Compiler warnings: unreachable code

This commit is contained in:
Shahram Najm 2013-05-13 13:40:28 +01:00
parent 51206c8de3
commit 91cac03025
2 changed files with 2 additions and 2 deletions

View File

@ -190,7 +190,7 @@ unsigned long grib_ibm_nearest_smaller_to_long(double x)
if ( m == mmin ) {
/* printf("grib_ibm_nearest_smaller_to_long: m == mmin (0x%lX) e=%lu\n",m,e); */
e = s ? e : e-1;
if (e<0) e=0; /* this condition is always FALSE -- 'e' is unsigned long */
/*if (e<0) e=0; this condition is always FALSE -- 'e' is unsigned long */
if (e>127) e=127;
/* printf("grib_ibm_nearest_smaller_to_long: e=%lu \n",e); */
}

View File

@ -140,7 +140,7 @@ static int init(grib_iterator* i,grib_handle* h,grib_arguments *args){
if (jScansPositively) {
for(lai=0;lai<self->nam;lai++) {
self->las[lai] = lats[istart--];
if (istart<0) istart=size-1; /* this condition is always FALSE -- 'istart' is unsigned long */
/*if (istart<0) istart=size-1; this condition is always FALSE -- 'istart' is unsigned long */
}
} else {
for(lai=0;lai<self->nam;lai++) {