From: Lennart Poettering Date: Mon, 12 Nov 2018 13:06:22 +0000 (+0100) Subject: localed: be more careful with the used types X-Git-Tag: v240~320^2~5 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=608eea8ea0ad89cea964237b732de230c8b11970;p=thirdparty%2Fsystemd.git localed: be more careful with the used types --- diff --git a/src/locale/localed.c b/src/locale/localed.c index 01bb5a74c2e..043fffaccb7 100644 --- a/src/locale/localed.c +++ b/src/locale/localed.c @@ -33,7 +33,8 @@ static int locale_update_system_manager(Context *c, sd_bus *bus) { _cleanup_strv_free_ char **l_set = NULL; _cleanup_(sd_bus_message_unrefp) sd_bus_message *m = NULL; sd_bus_error error = SD_BUS_ERROR_NULL; - unsigned c_set, c_unset, p; + size_t c_set, c_unset; + LocaleVariable p; int r; assert(bus);