From 7f3551070ebf61b288241dd0d89370eeb3c04103 Mon Sep 17 00:00:00 2001 From: Eric Fischer Date: Wed, 17 Dec 2014 14:01:20 -0800 Subject: [PATCH] Remove unneeded debug output --- geojson.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/geojson.c b/geojson.c index c6c4a8c..11d1c33 100644 --- a/geojson.c +++ b/geojson.c @@ -302,7 +302,6 @@ void read_json(FILE *f, const char *fname, const char *layername, int maxzoom, i exit(EXIT_FAILURE); } int geomfd = mkstemp(geomname); - printf("%s\n", geomname); if (geomfd < 0) { perror(geomname); exit(EXIT_FAILURE); @@ -522,8 +521,6 @@ void read_json(FILE *f, const char *fname, const char *layername, int maxzoom, i fclose(metafile); fclose(geomfile); - printf("bbox: %x %x %x %x\n", file_bbox[0], file_bbox[1], file_bbox[2], file_bbox[3]); - struct stat geomst; struct stat metast;