From: Andreas Schneider Date: Thu, 7 Dec 2017 16:45:45 +0000 (+0100) Subject: s4:utils: Fix size types X-Git-Url: http://git.samba.org/?a=commitdiff_plain;h=b709b10eb62541b57adc11d6d36096f04647bee3;p=metze%2Fsamba%2Fwip.git s4:utils: Fix size types This fixes compilation with -Wstrict-overflow=2 Signed-off-by: Andreas Schneider Reviewed-by: Andrew Bartlett --- diff --git a/source4/utils/oLschema2ldif.c b/source4/utils/oLschema2ldif.c index 108c2c8ab20b..c46799d737a4 100644 --- a/source4/utils/oLschema2ldif.c +++ b/source4/utils/oLschema2ldif.c @@ -68,7 +68,7 @@ struct ldb_dn *basedn; static int check_braces(const char *string) { - int b; + size_t b; char *c; b = 0;