Add missing newline in verbose mode

This commit is contained in:
Shahram Najm 2014-11-06 16:11:03 +00:00
parent 6b9ce87205
commit b3817e8ae1
1 changed files with 2 additions and 3 deletions

View File

@ -90,6 +90,7 @@ static int blacklisted(const char* name)
{ {
grib_string_list* b=blacklist; grib_string_list* b=blacklist;
while (b) { while (b) {
Assert(b->value);
if (!strcmp(name,b->value)) if (!strcmp(name,b->value))
return 1; return 1;
b=b->next; b=b->next;
@ -529,7 +530,6 @@ static int compare_values(grib_runtime_options* options,grib_handle* h1,grib_han
unsigned char *uval1 = NULL,*uval2 = NULL; unsigned char *uval1 = NULL,*uval2 = NULL;
double *dval1 = NULL, *dval2 = NULL; double *dval1 = NULL, *dval2 = NULL;
long *lval1 = NULL, *lval2 = NULL; long *lval1 = NULL, *lval2 = NULL;
int failed=0;
double maxdiff=0; double maxdiff=0;
double packingError1=0,packingError2=0; double packingError1=0,packingError2=0;
double value_tolerance=0; double value_tolerance=0;
@ -741,7 +741,7 @@ static int compare_values(grib_runtime_options* options,grib_handle* h1,grib_han
break; break;
case GRIB_TYPE_DOUBLE: case GRIB_TYPE_DOUBLE:
if (verbose) printf(" as double"); if (verbose) printf(" as double\n");
dval1 = (double*)grib_context_malloc(h1->context,len1*sizeof(double)); dval1 = (double*)grib_context_malloc(h1->context,len1*sizeof(double));
dval2 = (double*)grib_context_malloc(h2->context,len2*sizeof(double)); dval2 = (double*)grib_context_malloc(h2->context,len2*sizeof(double));
@ -828,7 +828,6 @@ static int compare_values(grib_runtime_options* options,grib_handle* h1,grib_han
if (verbose) printf(" (%d values) tolerance=%g\n",(int)len1,value_tolerance); if (verbose) printf(" (%d values) tolerance=%g\n",(int)len1,value_tolerance);
for(i = 0; i < len1; i++) { for(i = 0; i < len1; i++) {
if((diff=compare_double(pv1++,pv2++,&value_tolerance))!=0) { if((diff=compare_double(pv1++,pv2++,&value_tolerance))!=0) {
failed=1;
countdiff++; countdiff++;
if (maxdiff < diff) {maxdiff=diff;imaxdiff=i;} if (maxdiff < diff) {maxdiff=diff;imaxdiff=i;}
err1 = GRIB_VALUE_MISMATCH; err1 = GRIB_VALUE_MISMATCH;