summaryrefslogtreecommitdiff
path: root/src/device
diff options
context:
space:
mode:
Diffstat (limited to 'src/device')
-rw-r--r--src/device/oprom/x86emu/debug.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/device/oprom/x86emu/debug.c b/src/device/oprom/x86emu/debug.c
index 9e216e9df6..ab55198d23 100644
--- a/src/device/oprom/x86emu/debug.c
+++ b/src/device/oprom/x86emu/debug.c
@@ -170,7 +170,7 @@ void x86emu_decode_printf (const char *x)
void x86emu_decode_printf2 (const char *x, int y)
{
char temp[100];
- snprintf(temp, sizeof (temp), x,y);
+ snprintf(temp, sizeof(temp), x,y);
strcpy(M.x86.decoded_buf+M.x86.enc_str_pos,temp);
M.x86.enc_str_pos += strlen(temp);
}