summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/hash.c
diff options
context:
space:
mode:
authorAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-16 02:46:08 +0000
committerAkira Kakuto <kakuto@fuk.kindai.ac.jp>2010-05-16 02:46:08 +0000
commit73d8bb8f989275d57b542a0e7a7b93fed0fee42a (patch)
tree195aa8006f7783234b21c0ee2087c119cecb4c82 /Build/source/texk/kpathsea/hash.c
parent7b6a65e6e41163c0740ea26d6c2696be898e67a3 (diff)
untabify.
git-svn-id: svn://tug.org/texlive/trunk@18285 c570f23f-e606-0410-a88d-b1316a301751
Diffstat (limited to 'Build/source/texk/kpathsea/hash.c')
-rw-r--r--Build/source/texk/kpathsea/hash.c8
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. */
}
}