]> jfr.im git - irc/quakenet/newserv.git/commitdiff
Fixed what looks like a typo in the standard async query #define.
authorsplidge <redacted>
Fri, 1 Jun 2007 14:56:51 +0000 (15:56 +0100)
committersplidge <redacted>
Fri, 1 Jun 2007 14:56:51 +0000 (15:56 +0100)
pqsql/pqsql.h

index 3f92e595531084984929df80f46646c1a83a1e53..e6231f714ddf7cdf769cdcc9ea60390654800f75 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, format , ##__VA_ARGS__)
+#define pqquery(format, ...) pqasyncquery(NULL, NULL, 0, format , ##__VA_ARGS__)
 
 int pqconnected(void);