Scripts: Rename

This commit is contained in:
Shahram Najm 2022-08-12 15:24:34 +01:00
parent 6847b36b58
commit 2d8e55ef09
3 changed files with 2 additions and 2 deletions

View File

@ -39,6 +39,6 @@ hash_keys:
./make_hash_keys.sh
grib_accessor_classes_hash.c:
./make_accessor_class_hash.ksh
./make_accessor_class_hash.sh
SUFFIXES= .conf .grib .req .txt

View File

@ -137,7 +137,7 @@ grib_accessor* grib_accessor_factory(grib_section* p, grib_action* creator,
#ifdef ACCESSOR_FACTORY_USE_TRIE
c = get_class(p->h->context, creator->op);
#else
/* Use the hash table built with gperf (See make_accessor_class_hash.ksh) */
/* Use the hash table built with gperf (See make_accessor_class_hash.sh) */
c = *((grib_accessor_classes_hash(creator->op, strlen(creator->op)))->cclass);
#endif