diff --git a/tools/grib_ls.c b/tools/grib_ls.c index e491b404f..a035feb7e 100644 --- a/tools/grib_ls.c +++ b/tools/grib_ls.c @@ -100,7 +100,7 @@ int grib_tool_init(grib_runtime_options* options) if (options->latlon) { lat = strtod(options->latlon, &theEnd); if (*theEnd != ',') { - fprintf(stderr, "Error: wrong latitude value\n"); + fprintf(stderr, "Error %s: wrong latitude value. Please use 'latitude,longitude'\n",grib_tool_name); exit(1); } lon = strtod(++theEnd, &end1);