diff options
author | 2016-01-17 00:52:45 -0500 | |
---|---|---|
committer | 2016-01-17 00:52:45 -0500 | |
commit | 54072ef35d04a3ae61141f3d789f0e7842582913 (patch) | |
tree | e48896bab3a520550dfa00f4a97571a78b5db678 | |
parent | 64a60b428263fbe49962b4083d5b4996de2bdc0d (diff) |
fix unidasm compile [Robbbert]
-rw-r--r-- | src/tools/unidasm.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/tools/unidasm.cpp b/src/tools/unidasm.cpp index 13eabe31c59..91781b21c4c 100644 --- a/src/tools/unidasm.cpp +++ b/src/tools/unidasm.cpp @@ -656,7 +656,7 @@ int main(int argc, char *argv[]) } catch (add_exception &aex) { - fprintf(stderr, "Tag '%s' already exists in tagged_list\n", aex.tag()); + fprintf(stderr, "Tag '%s' already exists in tagged_list\n", aex.tag().c_str()); result = 1; } catch (std::exception &ex) |