mirror of
https://github.com/postgres/postgres.git
synced 2026-04-01 15:26:56 -04:00
Fix incorrect format placeholders
This commit is contained in:
parent
9ecb134a93
commit
470103697a
1 changed files with 2 additions and 2 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue