ECC-155: Crash: calling codes_dump from Fortran

This commit is contained in:
Shahram Najm 2015-10-02 15:13:25 +01:00
parent ef49680f11
commit edbd068a42
2 changed files with 2 additions and 2 deletions

View File

@ -1596,7 +1596,7 @@ int grib_f_dump_(int* gid){
if(!h)
return GRIB_INVALID_GRIB;
else
grib_dump_content(h,stdout,NULL,0,NULL);
grib_dump_content(h,stdout,"wmo",0,NULL);
return GRIB_SUCCESS;
}

View File

@ -1153,7 +1153,7 @@ int grib_c_dump(int* gid){
if(!h)
return GRIB_INVALID_GRIB;
else
grib_dump_content(h,stdout,NULL,0,NULL);
grib_dump_content(h,stdout,"wmo",0,NULL);
return GRIB_SUCCESS;
}