Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 72ceb21

Browse files
committed
Fix a compiler warning in initStringInfo().
Fix a compiler warning found by Cfbot. This was caused by commit bb86e85e442.
1 parent ceb2855 commit 72ceb21

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/common/stringinfo.c

+1-1
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ makeStringInfoExt(int initsize)
9696
void
9797
initStringInfo(StringInfo str)
9898
{
99-
return initStringInfoInternal(str, STRINGINFO_DEFAULT_SIZE);
99+
initStringInfoInternal(str, STRINGINFO_DEFAULT_SIZE);
100100
}
101101

102102
/*

0 commit comments

Comments
 (0)