ECC-419: print blank line between messages

This commit is contained in:
Shahram Najm 2017-10-04 11:17:30 +01:00
parent 60eb0410fd
commit c28fc641bc
1 changed files with 3 additions and 0 deletions

View File

@ -359,6 +359,9 @@ int grib_tool_new_handle_action(grib_runtime_options* options, grib_handle* h)
print_header(options);
dumper=grib_dump_content_with_dumper(h,dumper,stdout,dumper_name,options->dump_flags,0);
if (!dumper) exit(1);
if (grib_options_on("p")) {
printf("\n"); /* One blank line to separate the messages */
}
}
return 0;