diff options
author | 2016-06-18 12:52:53 +0200 | |
---|---|---|
committer | 2016-06-18 15:32:15 +0200 | |
commit | 1d0e0ac12ab7498df6084123aed9eae614bfde01 (patch) | |
tree | 7c8537df05d52631b35faa9e58df08bb18d14067 /src/tools/unidasm.cpp | |
parent | 78c39292171afa44cdd9121b4e525bceceacf534 (diff) |
remove all usages of tagmap
Diffstat (limited to 'src/tools/unidasm.cpp')
-rw-r--r-- | src/tools/unidasm.cpp | 4 |
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) |