File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -149,7 +149,8 @@ extern void CHECK_FOR_INTERRUPTS(void);
149
149
#define appendStringInfoChar appendPQExpBufferChar
150
150
#define appendBinaryStringInfo appendBinaryPQExpBuffer
151
151
152
- extern bool appendStringInfoVA (StringInfo str , const char * fmt , va_list args );
152
+ extern bool appendStringInfoVA (StringInfo str , const char * fmt , va_list args )
153
+ __attribute__((format (printf , 2 , 0 )));
153
154
extern int appendStringInfoFile (StringInfo str , FILE * fp );
154
155
extern int appendStringInfoFd (StringInfo str , int fd );
155
156
Original file line number Diff line number Diff line change 13
13
#define EXEC_FAILED (ret , expected ) \
14
14
(((expected) > 0 && (ret) != (expected)) || (ret) < 0)
15
15
16
+ static void
17
+ appendStringInfoVA_s (StringInfo str , const char * fmt , va_list args )
18
+ __attribute__((format (printf , 2 , 0 )));
19
+
16
20
static void
17
21
termStringInfo (StringInfo str )
18
22
{
You can’t perform that action at this time.
0 commit comments