summaryrefslogtreecommitdiff
path: root/hw/xfree86/x86emu/x86emu/debug.h
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2011-12-12 16:49:34 -0800
committerAlan Coopersmith <alan.coopersmith@oracle.com>2011-12-12 17:03:11 -0800
commit71efd868282d47a6db405a16de18ac322926962b (patch)
tree4ea9f49a327f17bff4563b76463d7aebeb71f0df /hw/xfree86/x86emu/x86emu/debug.h
parentd5a5eece670dee963765eab1431c21525c16d9ee (diff)
downloadxserver-71efd868282d47a6db405a16de18ac322926962b.tar.gz
x86emu: constify debug strings
Strings are all pointers to literal constants, just used as input to printf calls when debugging is enabled. Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com> Reviewed-by: Jamey Sharp <jamey@minilop.net> Reviewed-by: Peter Hutterer <peter.hutterer@who-t.net>
Diffstat (limited to 'hw/xfree86/x86emu/x86emu/debug.h')
-rw-r--r--hw/xfree86/x86emu/x86emu/debug.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/xfree86/x86emu/x86emu/debug.h b/hw/xfree86/x86emu/x86emu/debug.h
index 47aacb6c3..5f78d0575 100644
--- a/hw/xfree86/x86emu/x86emu/debug.h
+++ b/hw/xfree86/x86emu/x86emu/debug.h
@@ -189,8 +189,8 @@ extern "C" { /* Use "C" linkage when in C++ mode */
#endif
extern void x86emu_inc_decoded_inst_len (int x);
-extern void x86emu_decode_printf (char *x);
-extern void x86emu_decode_printf2 (char *x, int y);
+extern void x86emu_decode_printf (const char *x);
+extern void x86emu_decode_printf2 (const char *x, int y);
extern void x86emu_just_disassemble (void);
extern void x86emu_single_step (void);
extern void x86emu_end_instr (void);