diff options
author | Michael Paquier <michael@paquier.xyz> | 2023-01-03 16:26:37 +0900 |
---|---|---|
committer | Michael Paquier <michael@paquier.xyz> | 2023-01-03 16:26:37 +0900 |
commit | dfaa705ce423b5c55bb5effac1835d39aeb76767 (patch) | |
tree | aa2e307a5714e4cc7c191efef39ea9f8fd1aa7e7 /src/backend/jit/llvm/llvmjit.c | |
parent | f0e13802f196bc1044d52669ae5ef0b32e3a4db2 (diff) | |
download | postgresql-dfaa705ce423b5c55bb5effac1835d39aeb76767.tar.gz postgresql-dfaa705ce423b5c55bb5effac1835d39aeb76767.zip |
Fix typos in comments, code and documentation
While on it, newlines are removed from the end of two elog() strings.
The others are simple grammar mistakes. One comment in pg_upgrade
referred incorrectly to sequences since a7e5457.
Author: Justin Pryzby
Discussion: https://postgr.es/m/20221230231257.GI1153@telsasoft.com
Backpatch-through: 11
Diffstat (limited to 'src/backend/jit/llvm/llvmjit.c')
-rw-r--r-- | src/backend/jit/llvm/llvmjit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/backend/jit/llvm/llvmjit.c b/src/backend/jit/llvm/llvmjit.c index f0bfee2d6c3..537e0c448a1 100644 --- a/src/backend/jit/llvm/llvmjit.c +++ b/src/backend/jit/llvm/llvmjit.c @@ -781,7 +781,7 @@ llvm_session_initialize(void) if (LLVMGetTargetFromTriple(llvm_triple, &llvm_targetref, &error) != 0) { - elog(FATAL, "failed to query triple %s\n", error); + elog(FATAL, "failed to query triple %s", error); } /* |