diff options
Diffstat (limited to 'Build/source/texk/kpathsea/hash.c')
-rw-r--r-- | Build/source/texk/kpathsea/hash.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Build/source/texk/kpathsea/hash.c b/Build/source/texk/kpathsea/hash.c index b3efad0fb4c..868e03893c4 100644 --- a/Build/source/texk/kpathsea/hash.c +++ b/Build/source/texk/kpathsea/hash.c @@ -105,9 +105,9 @@ hash_insert (hash_table_type *table, else { hash_element_type *loc = table->buckets[n]; - while (loc->next) /* Find the last element. */ + while (loc->next) /* Find the last element. */ loc = loc->next; - loc->next = new_elt; /* Insert the new one after. */ + loc->next = new_elt; /* Insert the new one after. */ } } @@ -131,9 +131,9 @@ hash_insert_normalized (hash_table_type *table, else { hash_element_type *loc = table->buckets[n]; - while (loc->next) /* Find the last element. */ + while (loc->next) /* Find the last element. */ loc = loc->next; - loc->next = new_elt; /* Insert the new one after. */ + loc->next = new_elt; /* Insert the new one after. */ } } |