summaryrefslogtreecommitdiffstatshomepage
path: root/src/emu/cpu/drcumld.c
diff options
context:
space:
mode:
author R. Belmont <rb6502@users.noreply.github.com>2008-05-12 02:29:07 +0000
committer R. Belmont <rb6502@users.noreply.github.com>2008-05-12 02:29:07 +0000
commit2e363855bac93067820ccc40be64e0eab143e426 (patch)
tree64f499c11e611abb085a68bb1c032d08d4c4d7a9 /src/emu/cpu/drcumld.c
parentb735b4be6c1fedaf1830c802e1ca4a0df305dad5 (diff)
Fixed a bunch of compiler errors w/64-bit GCC. Result does not run.
Diffstat (limited to 'src/emu/cpu/drcumld.c')
-rw-r--r--src/emu/cpu/drcumld.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/drcumld.c b/src/emu/cpu/drcumld.c
index fb2d3b4ef49..242f370ad9f 100644
--- a/src/emu/cpu/drcumld.c
+++ b/src/emu/cpu/drcumld.c
@@ -301,7 +301,7 @@ void drcuml_disasm(const drcuml_instruction *inst, char *buffer)
/* if we are less than 8 characters, pad to 8 */
if (dest - buffer < 8)
- dest += sprintf(dest, "%*s", 8 - (dest - buffer), "");
+ dest += sprintf(dest, "%*s", (int)(8 - (dest - buffer)), "");
/* otherwise, add a comma */
else