Remove unneeded debug output

This commit is contained in:
Eric Fischer 2014-12-17 14:01:20 -08:00
parent 92bbf27f72
commit 7f3551070e

View File

@ -302,7 +302,6 @@ void read_json(FILE *f, const char *fname, const char *layername, int maxzoom, i
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
} }
int geomfd = mkstemp(geomname); int geomfd = mkstemp(geomname);
printf("%s\n", geomname);
if (geomfd < 0) { if (geomfd < 0) {
perror(geomname); perror(geomname);
exit(EXIT_FAILURE); exit(EXIT_FAILURE);
@ -522,8 +521,6 @@ void read_json(FILE *f, const char *fname, const char *layername, int maxzoom, i
fclose(metafile); fclose(metafile);
fclose(geomfile); 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 geomst;
struct stat metast; struct stat metast;