mirror of
https://github.com/jarun/nnn.git
synced 2024-11-17 08:32:36 +00:00
Fix compilation warning
This commit is contained in:
parent
7654a2e0c6
commit
30fdb6ff11
4
nnn.c
4
nnn.c
|
@ -1465,9 +1465,9 @@ coolsize(off_t size)
|
||||||
if (i < 3 && rem >= frac) { size++; rem = 0; }
|
if (i < 3 && rem >= frac) { size++; rem = 0; }
|
||||||
|
|
||||||
if (i > 0)
|
if (i > 0)
|
||||||
snprintf(size_buf, 12, "%" PRId64 ".%0*i%c", size, fdig, rem, U[i]);
|
snprintf(size_buf, 12, "%lu.%0*i%c", size, fdig, rem, U[i]);
|
||||||
else
|
else
|
||||||
snprintf(size_buf, 12, "%" PRId64 "%c", size, U[i]);
|
snprintf(size_buf, 12, "%lu%c", size, U[i]);
|
||||||
|
|
||||||
return size_buf;
|
return size_buf;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue