Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 4701036

Browse files
committed
Fix incorrect format placeholders
1 parent 9ecb134 commit 4701036

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/backend/jit/llvm/llvmjit.c

+2-2
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ llvm_compile_module(LLVMJitContext *context)
658658
{
659659
char *filename;
660660

661-
filename = psprintf("%u.%zu.bc",
661+
filename = psprintf("%d.%zu.bc",
662662
MyProcPid,
663663
context->module_generation);
664664
LLVMWriteBitcodeToFile(context->module, filename);
@@ -677,7 +677,7 @@ llvm_compile_module(LLVMJitContext *context)
677677
{
678678
char *filename;
679679

680-
filename = psprintf("%u.%zu.optimized.bc",
680+
filename = psprintf("%d.%zu.optimized.bc",
681681
MyProcPid,
682682
context->module_generation);
683683
LLVMWriteBitcodeToFile(context->module, filename);

0 commit comments

Comments
 (0)