summaryrefslogtreecommitdiffstatshomepage
path: root/src/tools/unidasm.cpp
diff options
context:
space:
mode:
author Miodrag Milanovic <mmicko@gmail.com>2016-06-18 12:52:53 +0200
committer Miodrag Milanovic <mmicko@gmail.com>2016-06-18 15:32:15 +0200
commit1d0e0ac12ab7498df6084123aed9eae614bfde01 (patch)
tree7c8537df05d52631b35faa9e58df08bb18d14067 /src/tools/unidasm.cpp
parent78c39292171afa44cdd9121b4e525bceceacf534 (diff)
remove all usages of tagmap
Diffstat (limited to 'src/tools/unidasm.cpp')
-rw-r--r--src/tools/unidasm.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp
index e70f1fc13ac..ee125761ee6 100644
--- a/src/tools/unidasm.cpp
+++ b/src/tools/unidasm.cpp
@@ -662,9 +662,9 @@ int main(int argc, char *argv[])
fprintf(stderr, "Caught unhandled emulator exception\n");
result = 1;
}
- catch (add_exception &aex)
+ catch (tag_add_exception &aex)
{
- fprintf(stderr, "Tag '%s' already exists in tagged_list\n", aex.tag());
+ fprintf(stderr, "Tag '%s' already exists in tagged map\n", aex.tag());
result = 1;
}
catch (std::exception &ex)