summaryrefslogtreecommitdiff
path: root/source4/utils
diff options
context:
space:
mode:
authorAndreas Schneider <asn@samba.org>2017-12-07 17:45:45 +0100
committerJeremy Allison <jra@samba.org>2018-03-20 23:16:15 +0100
commitb709b10eb62541b57adc11d6d36096f04647bee3 (patch)
tree53185c08eb676b4e5b1f8f48eaefc7ebfc60c45a /source4/utils
parent87ebb195d34e3c413eea7ef38024c1be97fd5be9 (diff)
downloadsamba-b709b10eb62541b57adc11d6d36096f04647bee3.tar.gz
s4:utils: Fix size types
This fixes compilation with -Wstrict-overflow=2 Signed-off-by: Andreas Schneider <asn@samba.org> Reviewed-by: Andrew Bartlett <abartlet@samba.org>
Diffstat (limited to 'source4/utils')
-rw-r--r--source4/utils/oLschema2ldif.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source4/utils/oLschema2ldif.c b/source4/utils/oLschema2ldif.c
index 108c2c8ab20..c46799d737a 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;