summaryrefslogtreecommitdiff
path: root/Build/source/texk/kpathsea/tex-hush.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/kpathsea/tex-hush.c')
-rw-r--r--Build/source/texk/kpathsea/tex-hush.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/tex-hush.c b/Build/source/texk/kpathsea/tex-hush.c
index 05df3ddb1db..6904f127c85 100644
--- a/Build/source/texk/kpathsea/tex-hush.c
+++ b/Build/source/texk/kpathsea/tex-hush.c
@@ -32,14 +32,14 @@ kpathsea_tex_hush (kpathsea kpse, const_string what)
return true;
if (STREQ (hush, "none"))
return false;
- for (h = kpathsea_path_element (kpse, hush); h;
+ for (h = kpathsea_path_element (kpse, hush); h;
h = kpathsea_path_element (kpse, NULL)) {
/* Don't do anything special with empty elements. */
if (STREQ (h, what))
return true;
}
}
-
+
return false;
}