summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLloyd Hilaiel <lloyd@hilaiel.com>2011-12-19 16:13:37 -0700
committerLloyd Hilaiel <lloyd@hilaiel.com>2011-12-19 16:13:37 -0700
commita160dcb65f1258214d32870f281bbae46a4b6f47 (patch)
tree60ae3acc75d01a502c4230690866e2c7d79c33e0
parent52d60b8f6a42e8b04ab2fa323ef338a9231d1b97 (diff)
downloadyajl-a160dcb65f1258214d32870f281bbae46a4b6f47.tar.gz
fix bug in f7e95b936f1d53b1f19a93d7cdca0821d7e09f93 - extra comma in reformatter usage
-rw-r--r--reformatter/json_reformat.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/reformatter/json_reformat.c b/reformatter/json_reformat.c
index ce77c11..d7d714d 100644
--- a/reformatter/json_reformat.c
+++ b/reformatter/json_reformat.c
@@ -98,13 +98,13 @@ usage(const char * progname)
fprintf(stderr, "%s: reformat json from stdin\n"
"usage: json_reformat [options]\n"
" -m minimize json rather than beautify (default)\n"
- " -u allow invalid UTF8 inside strings during parsing\n",
+ " -u allow invalid UTF8 inside strings during parsing\n"
" -e escape any forward slashes (for embedding in HTML)\n",
progname);
exit(1);
-
}
+
int
main(int argc, char ** argv)
{