We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2cfe577 commit 7d9218cCopy full SHA for 7d9218c
sqllib.c
@@ -223,7 +223,7 @@ sql_safe_query_use (SQL * sql, char *q)
223
{
224
if (!sqldebug)
225
fprintf (stderr, "%s\n", q);
226
- errx (202, "SQL query use, no result (%s)",q);
+ errx (202, "SQL query use, no result");
227
}
228
return r;
229
@@ -245,7 +245,7 @@ sql_safe_query_store (SQL * sql, char *q)
245
246
247
248
- errx (202, "SQL query store, no result (%s)",q);
+ errx (202, "SQL query store, no result");
249
} else if (sqldebug)
250
fprintf (stderr, "(%llu row%s)\n", sql_num_rows (r), sql_num_rows (r) == 1 ? "" : "s");
251
0 commit comments