summaryrefslogtreecommitdiffstats
path: root/locfile.c
diff options
context:
space:
mode:
authorDavid R. MacIver <david@drmaciver.com>2013-12-08 20:08:04 +0000
committerDavid R. MacIver <david@drmaciver.com>2013-12-08 20:08:04 +0000
commitf6f7d4d973d203d975a3585f0d1e95229ed4ffb6 (patch)
treeb092ca8b954c0460a4c553f30cfae05df1681dcd /locfile.c
parent3a1dab5396caa130ade494a426153ef8503a3443 (diff)
These vfprintfs are being used as if they were printfs. Fix that
Diffstat (limited to 'locfile.c')
-rw-r--r--locfile.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/locfile.c b/locfile.c
index 48cacd6f..39343dbf 100644
--- a/locfile.c
+++ b/locfile.c
@@ -96,8 +96,8 @@ enomem:
if (cb != NULL)
cb(cb_data, jv_invalid());
else if (errno == ENOMEM || errno == 0)
- vfprintf(stderr, "Error formatting jq compilation error: %s", strerror(errno ? errno : ENOMEM));
+ fprintf(stderr, "Error formatting jq compilation error: %s", strerror(errno ? errno : ENOMEM));
else
- vfprintf(stderr, "Error formatting jq compilation error: %s", strerror(errno));
+ fprintf(stderr, "Error formatting jq compilation error: %s", strerror(errno));
return;
}