Skip to content

Commit

Permalink
loadmap: Fix a trivial type conversion warning
Browse files Browse the repository at this point in the history
  • Loading branch information
mefistotelis committed Jun 15, 2024
1 parent 2799856 commit 017c607
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/LoadMap.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -378,7 +378,7 @@ bool idaapi run(size_t)
continue;
}
// If shouldn't apply names
bool bNameApply = g_options.bNameApply;
bool bNameApply = (g_options.bNameApply != 0);
if (parsed == MapFile::COMMENT_LINE)
{
qsnprintf(fmt, sizeof(fmt), "Comment line: %%.%ds.\n", lineLen);
Expand Down

0 comments on commit 017c607

Please sign in to comment.