Avoid a couple of warnings. (PR #1180)

This commit is contained in:
Andrea
2023-02-17 17:18:29 +00:00
committed by GitHub
parent b0220169b8
commit fb11c74d62
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -542,7 +542,7 @@ int ParseSymbolTable(const std::string & pPathFileName, SymbolTable_Index_e eSym
{
bool bFileDisplayed = false;
const int nMaxLen = MIN(DISASM_DISPLAY_MAX_TARGET_LEN, MAX_SYMBOLS_LEN);
const int nMaxLen = std::min<int>(DISASM_DISPLAY_MAX_TARGET_LEN, MAX_SYMBOLS_LEN);
int nSymbolsLoaded = 0;