Skip to content
Snippets Groups Projects
Commit bc525acf authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Fix OpenBSD warning.

parent 3a5f02f1
Branches
Tags
No related merge requests found
Pipeline #5633 failed
...@@ -68,7 +68,7 @@ char* byteStr(uint64_t value) ...@@ -68,7 +68,7 @@ char* byteStr(uint64_t value)
else if(value>=1024) else if(value>=1024)
SAFEPRINTF(tmp, "%5.1fK", value/1024.0); SAFEPRINTF(tmp, "%5.1fK", value/1024.0);
else else
SAFEPRINTF(tmp, "%5luB", value); SAFEPRINTF(tmp, "%5" PRIu64 "B", value);
return tmp; return tmp;
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment