summaryrefslogtreecommitdiff
path: root/src/backend/jit
diff options
context:
space:
mode:
authorPeter Eisentraut <peter@eisentraut.org>2023-03-10 07:10:43 +0100
committerPeter Eisentraut <peter@eisentraut.org>2023-03-10 07:10:43 +0100
commit470103697a17c4df516f9779fd3ff7f7c32d3cc5 (patch)
tree4557b52ab51410d1b6088b50eba366a4b558af64 /src/backend/jit
parent9ecb134a93f0a82540b0e0bed67b30d0c9eb836a (diff)
downloadpostgresql-470103697a17c4df516f9779fd3ff7f7c32d3cc5.tar.gz
Fix incorrect format placeholders
Diffstat (limited to 'src/backend/jit')
-rw-r--r--src/backend/jit/llvm/llvmjit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/jit/llvm/llvmjit.c b/src/backend/jit/llvm/llvmjit.c
index 312612115c..a8b73a9cf1 100644
--- a/src/backend/jit/llvm/llvmjit.c
+++ b/src/backend/jit/llvm/llvmjit.c
@@ -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);