From ea0f9378a02ed3b64ab3b4f71862bfcb449d2b42 Mon Sep 17 00:00:00 2001 From: Volker Lendecke Date: Sun, 28 Mar 2010 13:16:18 +0200 Subject: s3: Fix indentation in conv_str_size --- source3/lib/util_str.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source3/lib/util_str.c') diff --git a/source3/lib/util_str.c b/source3/lib/util_str.c index 9a0b12adea..22167d7ff2 100644 --- a/source3/lib/util_str.c +++ b/source3/lib/util_str.c @@ -2012,9 +2012,9 @@ SMB_OFF_T conv_str_size(const char * str) #ifdef HAVE_STRTOULL if (sizeof(SMB_OFF_T) == 8) { - lval = strtoull(str, &end, 10 /* base */); + lval = strtoull(str, &end, 10 /* base */); } else { - lval = strtoul(str, &end, 10 /* base */); + lval = strtoul(str, &end, 10 /* base */); } #else lval = strtoul(str, &end, 10 /* base */); -- cgit