Type conversion

This commit is contained in:
Shahram Najm 2022-05-01 12:32:17 +01:00
parent 46f49fb002
commit 025a4217ce
1 changed files with 1 additions and 1 deletions

View File

@ -575,7 +575,7 @@ static void dump(grib_accessor* a, grib_dumper* dumper)
if (table && value >= 0 && value < table->size) {
if (table->entries[value].abbreviation) {
int b = atol(table->entries[value].abbreviation);
long b = atol(table->entries[value].abbreviation);
if (b == value)
strcpy(comment, table->entries[value].title);
else