summaryrefslogtreecommitdiff
path: root/source3/lib
diff options
context:
space:
mode:
authorVolker Lendecke <vl@samba.org>2010-03-28 13:16:18 +0200
committerVolker Lendecke <vl@samba.org>2010-03-28 15:25:15 +0200
commitea0f9378a02ed3b64ab3b4f71862bfcb449d2b42 (patch)
tree0cd8aafaf4103f4732773625229103828b0a9200 /source3/lib
parente541013e20572c96f7fe12814742b6f9eb3084db (diff)
downloadsamba-ea0f9378a02ed3b64ab3b4f71862bfcb449d2b42.tar.gz
samba-ea0f9378a02ed3b64ab3b4f71862bfcb449d2b42.tar.bz2
samba-ea0f9378a02ed3b64ab3b4f71862bfcb449d2b42.zip
s3: Fix indentation in conv_str_size
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 */);