mirror of
https://github.com/postgres/postgres.git
synced 2025-08-19 23:22:23 +03:00
Fix incorrect format placeholders
This commit is contained in:
@@ -658,7 +658,7 @@ llvm_compile_module(LLVMJitContext *context)
|
||||
{
|
||||
char *filename;
|
||||
|
||||
filename = psprintf("%u.%zu.bc",
|
||||
filename = psprintf("%d.%zu.bc",
|
||||
MyProcPid,
|
||||
context->module_generation);
|
||||
LLVMWriteBitcodeToFile(context->module, filename);
|
||||
@@ -677,7 +677,7 @@ llvm_compile_module(LLVMJitContext *context)
|
||||
{
|
||||
char *filename;
|
||||
|
||||
filename = psprintf("%u.%zu.optimized.bc",
|
||||
filename = psprintf("%d.%zu.optimized.bc",
|
||||
MyProcPid,
|
||||
context->module_generation);
|
||||
LLVMWriteBitcodeToFile(context->module, filename);
|
||||
|
Reference in New Issue
Block a user