diff options
Diffstat (limited to 'src/emu/cpu/t11/t11dasm.c')
-rw-r--r-- | src/emu/cpu/t11/t11dasm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/emu/cpu/t11/t11dasm.c b/src/emu/cpu/t11/t11dasm.c index 2cd615268f7..60ab7533e2d 100644 --- a/src/emu/cpu/t11/t11dasm.c +++ b/src/emu/cpu/t11/t11dasm.c @@ -19,7 +19,7 @@ static offs_t pcbase; static unsigned MakeEA (char **ea, int lo, unsigned pc, int width) { - char *buffer = cpuintrf_temp_str(); + static char buffer[32]; int reg, pm; assert (width == 2 || width == 4); |