From 6ec211ea4cf31c03b167d1a895da655bf626d1c2 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Fri, 29 Jan 2016 11:05:51 -0800 Subject: [PATCH] Better message about layer name, and put it on stderr with the rest. --- geojson.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/geojson.c b/geojson.c index 85f5894..0873cd4 100644 --- a/geojson.c +++ b/geojson.c @@ -1396,7 +1396,7 @@ int read_json(int argc, char **argv, char *fname, const char *layername, int max *out = '\0'; if (!quiet) { - printf("using layer %d name %s\n", i, trunc); + fprintf(stderr, "For layer %d, using name \"%s\"\n", i, trunc); } } }