This commit is contained in:
Shahram Najm 2018-09-05 12:24:11 +01:00
parent 718d71850e
commit 064a1b8db6
1 changed files with 2 additions and 2 deletions

View File

@ -40,14 +40,14 @@ grib_dumper* grib_dumper_factory(const char* op, grib_handle* h, FILE* out, unsi
d->depth = 0;
d->handle = h;
d->cclass = c;
d->option_flags = option_flags;
d->option_flags = option_flags;
d->arg = arg;
d->out = out;
grib_init_dumper(d);
grib_context_log(h->context,GRIB_LOG_DEBUG,"Creating dumper of type : %s ", op);
return d;
}
grib_context_log(h->context,GRIB_LOG_ERROR,"Unknown type : %s for dumper", op);
grib_context_log(h->context,GRIB_LOG_ERROR,"Unknown type : '%s' for dumper", op);
return NULL;
}