Fix a compiler warning in initStringInfo().

Fix a compiler warning found by Cfbot. This was caused by commit
bb86e85e442.
This commit is contained in:
Tatsuo Ishii 2025-01-11 15:52:37 +09:00
parent ceb2855522
commit 72ceb21b02

View File

@ -96,7 +96,7 @@ makeStringInfoExt(int initsize)
void void
initStringInfo(StringInfo str) initStringInfo(StringInfo str)
{ {
return initStringInfoInternal(str, STRINGINFO_DEFAULT_SIZE); initStringInfoInternal(str, STRINGINFO_DEFAULT_SIZE);
} }
/* /*