diff options
author | 2015-04-12 08:05:15 +0200 | |
---|---|---|
committer | 2015-04-12 08:05:43 +0200 | |
commit | 7faba31b1b8dcd6caa5f1b651d2693106de08d35 (patch) | |
tree | c528d5479eee247ee5305df53a298a09b594fccc /src/emu/cpu/uml.c | |
parent | 15a464dac99052edc0645374a77ecef8d1a65b0d (diff) |
There is no implicit conversion to char* in std::string (nw)
Diffstat (limited to 'src/emu/cpu/uml.c')
-rw-r--r-- | src/emu/cpu/uml.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/uml.c b/src/emu/cpu/uml.c index 86748604f6c..b1ca222771e 100644 --- a/src/emu/cpu/uml.c +++ b/src/emu/cpu/uml.c @@ -1026,5 +1026,5 @@ const char *uml::instruction::disasm(astring &buffer, drcuml_state *drcuml) cons if (m_flags & FLAG_C) buffer.cat('C'); } - return buffer; + return buffer.c_str(); } |