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

Fix OpenBSD warning.

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