diff options
author | Tatsuo Ishii <ishii@postgresql.org> | 2025-01-11 15:52:37 +0900 |
---|---|---|
committer | Tatsuo Ishii <ishii@postgresql.org> | 2025-01-11 15:52:37 +0900 |
commit | 72ceb21b029433dd82f29182894dce63e639b4d4 (patch) | |
tree | 4b0c9311b9116d39722cd2ad6817f6705ce2c1bf /src | |
parent | ceb2855522940d5aaae4c6e5eed493d60e3196ce (diff) | |
download | postgresql-72ceb21b029433dd82f29182894dce63e639b4d4.tar.gz postgresql-72ceb21b029433dd82f29182894dce63e639b4d4.zip |
Fix a compiler warning in initStringInfo().
Fix a compiler warning found by Cfbot. This was caused by commit
bb86e85e442.
Diffstat (limited to 'src')
-rw-r--r-- | src/common/stringinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/stringinfo.c b/src/common/stringinfo.c index f4317003411..22d03807697 100644 --- a/src/common/stringinfo.c +++ b/src/common/stringinfo.c @@ -96,7 +96,7 @@ makeStringInfoExt(int initsize) void initStringInfo(StringInfo str) { - return initStringInfoInternal(str, STRINGINFO_DEFAULT_SIZE); + initStringInfoInternal(str, STRINGINFO_DEFAULT_SIZE); } /* |