mirror of
https://github.com/postgres/postgres.git
synced 2026-06-09 08:42:38 -04:00
Fix a compiler warning in initStringInfo().
Fix a compiler warning found by Cfbot. This was caused by commit bb86e85e442.
This commit is contained in:
parent
ceb2855522
commit
72ceb21b02
1 changed files with 1 additions and 1 deletions
|
|
@ -96,7 +96,7 @@ makeStringInfoExt(int initsize)
|
|||
void
|
||||
initStringInfo(StringInfo str)
|
||||
{
|
||||
return initStringInfoInternal(str, STRINGINFO_DEFAULT_SIZE);
|
||||
initStringInfoInternal(str, STRINGINFO_DEFAULT_SIZE);
|
||||
}
|
||||
|
||||
/*
|
||||
|
|
|
|||
Loading…
Reference in a new issue