Commit 0fd2b25c authored by charpty's avatar charpty
Browse files

Remove unnecessary return statements


Signed-off-by: default avatarcharpty <charpty@gmail.com>
parent 8ac7af1c
......@@ -2866,7 +2866,6 @@ void bytesToHuman(char *s, unsigned long long n) {
if (n < 1024) {
/* Bytes */
sprintf(s,"%lluB",n);
return;
} else if (n < (1024*1024)) {
d = (double)n/(1024);
sprintf(s,"%.2fK",d);
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment