Fix error in fprintf

This commit is contained in:
Shahram Najm 2015-01-26 17:46:49 +00:00
parent 1fca46dfb4
commit acb452c589
1 changed files with 1 additions and 1 deletions

View File

@ -108,7 +108,7 @@ int grib_tool_init(grib_runtime_options* options) {
if (grib_options_on("d") && !grib_options_on("u"))
options->dump_flags |= GRIB_DUMP_FLAG_ALL_DATA;
if (json) fprintf(stdout,"{\n",options->handle_count);
if (json) fprintf(stdout,"{\n");
return 0;
}