summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/unidasm.cpp
diff options
context:
space:
mode:
author Vas Crabb <vas@vastheman.com>2020-11-18 20:44:41 +1100
committer Vas Crabb <vas@vastheman.com>2020-11-18 20:44:41 +1100
commit516d3a1096879e2a0b83c42b4f989367e7e28bf2 (patch)
treebc430a168eca527ca15759cbfa53e83dfc5bc399 /src/tools/unidasm.cpp
parent66c3d08daae12e1f2161de7d99266d4c42dc850f (diff)
vicdual.cpp: Fix extraneous parentheses on comparison warning.
Diffstat (limited to 'src/tools/unidasm.cpp')
-rw-r--r--src/tools/unidasm.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp
index 9200f206f56..fd32fdf0932 100644
--- a/src/tools/unidasm.cpp
+++ b/src/tools/unidasm.cpp
@@ -1205,7 +1205,7 @@ int main(int argc, char *argv[])
#else
if (!std::freopen(nullptr, "rb", stdin)) {
#endif
- std::fprintf(stderr, "Error reopening stin in binary mode\n");
+ std::fprintf(stderr, "Error reopening stdin in binary mode\n");
return 1;
}
std::size_t allocated = 0x1000;