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

Resolve error on 32-bit *nixes with large file support

ERROR 2 (No such file or directory) in logout.cpp line 189 (backout) opening "/sbbs/node1/backout.dab"
parent 0e19f213
No related branches found
No related tags found
No related merge requests found
......@@ -181,7 +181,7 @@ void sbbs_t::backout()
file_t f;
SAFEPRINTF(path,"%sbackout.dab",cfg.node_dir);
if(flength(path)<1L) {
if(flength(path) < 1) {
remove(path);
return;
}
......
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