summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
Diffstat (limited to 'source3/lib')
-rw-r--r--source3/lib/util_str.c4
1 files changed, 2 insertions, 2 deletions
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 */);