Skip to content
Snippets Groups Projects
Commit 06da7b98 authored by Rob Swindell's avatar Rob Swindell :speech_balloon:
Browse files

Use proper 64-bit function for converting an off_t to comma-separated

parent 7d5a43c2
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #3896 passed
......@@ -160,7 +160,7 @@ bool sbbs_t::email(int usernumber, const char *top, const char *subj, int mode,
mv(tmp,str2,0);
off_t l=flength(str2);
if(l>0)
bprintf(text[FileNBytesReceived],title,ultoac(l,tmp));
bprintf(text[FileNBytesReceived],title,u64toac(l,tmp));
else {
bprintf(text[FileNotReceived],title);
(void)remove(msgpath);
......
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