]> jfr.im git - irc/quakenet/newserv.git/commitdiff
OK, so my last patch was bullshit. Changed to make it more obvious what's
authorsplidge <redacted>
Fri, 1 Jun 2007 18:08:36 +0000 (19:08 +0100)
committersplidge <redacted>
Fri, 1 Jun 2007 18:08:36 +0000 (19:08 +0100)
going on.

pqsql/pqsql.h

index e6231f714ddf7cdf769cdcc9ea60390654800f75..cf4e06cef72adeee9bd3dcedbc2f0175ca2c4f32 100644 (file)
@@ -11,7 +11,7 @@ void pqasyncqueryf(PQQueryHandler handler, void *tag, int flags, char *format, .
 
 #define pqasyncquery(handler, tag, format, ...) pqasyncqueryf(handler, tag, 0, format , ##__VA_ARGS__)
 #define pqcreatequery(format, ...) pqasyncqueryf(NULL, NULL, QH_CREATE, format , ##__VA_ARGS__)
-#define pqquery(format, ...) pqasyncquery(NULL, NULL, 0, format , ##__VA_ARGS__)
+#define pqquery(format, ...) pqasyncqueryf(NULL, NULL, 0, format , ##__VA_ARGS__)
 
 int pqconnected(void);