diff options
Diffstat (limited to 'locale')
-rw-r--r-- | locale/programs/localedef.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locale/programs/localedef.c b/locale/programs/localedef.c index 61f9bef65c..2f100f7a7a 100644 --- a/locale/programs/localedef.c +++ b/locale/programs/localedef.c @@ -417,7 +417,6 @@ construct_output_path (char *path) contains a reference to the codeset. This should be normalized. */ char *startp; - size_t n; startp = path; /* We must be prepared for finding a CEN name or a location of @@ -441,6 +440,7 @@ construct_output_path (char *path) /* We put an additional '\0' at the end of the string because at the end of the function we need another byte for the trailing '/'. */ + ssize_t n; if (normal == NULL) n = asprintf (&result, "%s%s/%s%c", output_prefix ?: "", LOCALEDIR, path, '\0'); |