diff options
author | Volker Lendecke <vl@samba.org> | 2010-03-28 13:16:18 +0200 |
---|---|---|
committer | Volker Lendecke <vl@samba.org> | 2010-03-28 15:25:15 +0200 |
commit | ea0f9378a02ed3b64ab3b4f71862bfcb449d2b42 (patch) | |
tree | 0cd8aafaf4103f4732773625229103828b0a9200 /source3 | |
parent | e541013e20572c96f7fe12814742b6f9eb3084db (diff) | |
download | samba-ea0f9378a02ed3b64ab3b4f71862bfcb449d2b42.tar.gz samba-ea0f9378a02ed3b64ab3b4f71862bfcb449d2b42.tar.bz2 samba-ea0f9378a02ed3b64ab3b4f71862bfcb449d2b42.zip |
s3: Fix indentation in conv_str_size
Diffstat (limited to 'source3')
-rw-r--r-- | source3/lib/util_str.c | 4 |
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 */); |