1
0
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:
Volker Lendecke 2010-03-28 13:16:18 +02:00
parent e541013e20
commit ea0f9378a0

View File

@ -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 */);