From 2952b11705faf16e8dae432e0a9bbf99e34d4c67 Mon Sep 17 00:00:00 2001 From: Ulrich Drepper Date: Mon, 9 May 2011 13:15:01 -0400 Subject: Use appropriate type for return value checking --- locale/programs/localedef.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'locale') 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'); -- cgit 1.4.1