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

Fix newly introduced GCC warning

warning: invalid suffix on literal; C++11 requires a space between literal and string macro
parent 8f3f0c54
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2917 passed
......@@ -344,7 +344,7 @@ bool sbbs_t::editfileinfo(file_t* f)
return false;
if(*uploader != '\0' || *f->from != '\0')
smb_new_hfield_str(f, SMB_FILEUPLOADER, uploader);
SAFEPRINTF(str, "%"PRIu64, f->cost);
SAFEPRINTF(str, "%" PRIu64, f->cost);
bputs(text[EditCreditValue]);
getstr(str,10,K_NUMBER|K_EDIT|K_AUTODEL);
if(msgabort(true))
......
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