From 56d8178a7ccd28e51a358af3e08cb034b5025488 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Tue, 19 Apr 2016 15:35:58 -0700 Subject: [PATCH] Fix a mistake in the formatting of the Usage message --- geojson.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/geojson.c b/geojson.c index 3b7e1a2..70daae3 100644 --- a/geojson.c +++ b/geojson.c @@ -2758,8 +2758,10 @@ int main(int argc, char **argv) { } } if (width + 16 >= 80) { - fprintf(stderr, " [file.json ...]"); + fprintf(stderr, "\n "); + width = 8; } + fprintf(stderr, " [file.json ...]"); } exit(EXIT_FAILURE); }