From 2d8e55ef098d6e3d8dc13800890af9d34148c6df Mon Sep 17 00:00:00 2001 From: Shahram Najm Date: Fri, 12 Aug 2022 15:24:34 +0100 Subject: [PATCH] Scripts: Rename --- src/extrules.am | 2 +- src/grib_accessor_class.c | 2 +- ...make_accessor_class_hash.ksh => make_accessor_class_hash.sh} | 0 3 files changed, 2 insertions(+), 2 deletions(-) rename src/{make_accessor_class_hash.ksh => make_accessor_class_hash.sh} (100%) diff --git a/src/extrules.am b/src/extrules.am index e0a8f699f..07e07d4a4 100644 --- a/src/extrules.am +++ b/src/extrules.am @@ -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 diff --git a/src/grib_accessor_class.c b/src/grib_accessor_class.c index c9946bc07..b72feb037 100644 --- a/src/grib_accessor_class.c +++ b/src/grib_accessor_class.c @@ -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 diff --git a/src/make_accessor_class_hash.ksh b/src/make_accessor_class_hash.sh similarity index 100% rename from src/make_accessor_class_hash.ksh rename to src/make_accessor_class_hash.sh