From: Volker Lendecke Date: Fri, 24 Jan 2020 10:49:58 +0000 (+0100) Subject: lib: Align integer types X-Git-Tag: ldb-2.1.1~225 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=30940e72803a8ec2f6a7327f783849d1b7bed8df;p=thirdparty%2Fsamba.git lib: Align integer types Signed-off-by: Volker Lendecke Reviewed-by: Andreas Schneider --- diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 5d1d1291011..cc3c257e41d 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -680,8 +680,7 @@ int ipstr_list_parse(const char *ipstr_list, struct ip_service **ip_list) { TALLOC_CTX *frame; char *token_str = NULL; - size_t count; - int i; + size_t i, count; if (!ipstr_list || !ip_list) return 0;