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

MSVC didn't like that use of std::min(), so just go back to a macro

parent 40f46c7e
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2895 passed
......@@ -22,7 +22,6 @@
#include "sbbs.h"
#include "sauce.h"
#include "filedat.h"
#include <algorithm>
/****************************************************************************/
/****************************************************************************/
......@@ -171,7 +170,7 @@ bool sbbs_t::uploadfile(file_t* f)
}
if(cfg.dir[f->dir]->misc&DIR_AONLY) /* Forced anonymous */
f->hdr.attr |= MSG_ANONYMOUS;
uint32_t cdt = (uint32_t)std::min(length, (off_t)UINT32_MAX);
uint32_t cdt = (uint32_t)MIN(length, UINT32_MAX);
smb_hfield_bin(f, SMB_COST, cdt);
smb_hfield_str(f, SENDER, useron.alias);
bprintf(text[FileNBytesReceived],f->name, i64toac(length,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