diff options
Diffstat (limited to 'Build/source/texk/kpathsea/uppercasify.c')
-rw-r--r-- | Build/source/texk/kpathsea/uppercasify.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Build/source/texk/kpathsea/uppercasify.c b/Build/source/texk/kpathsea/uppercasify.c index dcfc8924b23..9d96d381f77 100644 --- a/Build/source/texk/kpathsea/uppercasify.c +++ b/Build/source/texk/kpathsea/uppercasify.c @@ -25,11 +25,11 @@ uppercasify (const_string s) { string target; string ret = xstrdup (s); - + for (target = ret; *target; target++) { *target = TOUPPER (*target); } - + return ret; } |