diff options
Diffstat (limited to 'Build/source/texk/kpathsea/concatn.c')
-rw-r--r-- | Build/source/texk/kpathsea/concatn.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Build/source/texk/kpathsea/concatn.c b/Build/source/texk/kpathsea/concatn.c index e108aee9201..4e0b9eb923d 100644 --- a/Build/source/texk/kpathsea/concatn.c +++ b/Build/source/texk/kpathsea/concatn.c @@ -33,9 +33,9 @@ concatn (const_string str1, ...) if (!str1) return NULL; - + ret = xstrdup (str1); - + va_start (ap, str1); while ((arg = va_arg (ap, string)) != NULL) { @@ -44,7 +44,7 @@ concatn (const_string str1, ...) ret = temp; } va_end (ap); - + return ret; } |