mirror of
https://github.com/samba-team/samba.git
synced 2025-01-27 14:04:05 +03:00
s3: Fix indentation in conv_str_size
This commit is contained in:
parent
e541013e20
commit
ea0f9378a0
@ -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 */);
|
||||
|
Loading…
x
Reference in New Issue
Block a user