Skip to content
Snippets Groups Projects
Commit 1b35a57b authored by Uwe Schulzweida's avatar Uwe Schulzweida
Browse files

stream_gribapi: fix ICC compiler warning

parent 9782736d
No related branches found
Tags cdi-1.5.6
No related merge requests found
......@@ -671,7 +671,7 @@ void grib2GetLevel(grib_handle *gh, int *leveltype, int *lbounds, int *level1, i
status = grib_get_long(gh, "typeOfSecondFixedSurface", &lpar);
if ( status == 0 ) leveltype2 = lpar;
if ( *leveltype == leveltype2 && leveltype != 255 ) *lbounds = 1;
if ( *leveltype == leveltype2 && *leveltype != 255 ) *lbounds = 1;
if ( *lbounds == 0 )
{
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment