ECC-1510: GRIB2: Add support for template 5.200 (Run length packing with level values)

This commit is contained in:
Shahram Najm 2023-01-25 20:28:44 +00:00
parent b5732d2b71
commit a27bbd86dd
1 changed files with 2 additions and 2 deletions

View File

@ -52,7 +52,7 @@ struct accessor_class_hash { char *name; grib_accessor_class **cclass;};
#endif
#endif
static unsigned int
grib_accessor_classes_get_id (register const char *str, register size_t len)
grib_accessor_classes_get_id (const char *str, size_t len)
{
static const unsigned short asso_values[] =
{
@ -83,7 +83,7 @@ grib_accessor_classes_get_id (register const char *str, register size_t len)
832, 832, 832, 832, 832, 832, 832, 832, 832, 832,
832, 832, 832, 832, 832, 832
};
register unsigned int hval = len;
unsigned int hval = len;
switch (hval)
{