aboutsummaryrefslogtreecommitdiff
path: root/gdb/i386ly-tdep.c
diff options
context:
space:
mode:
Diffstat (limited to 'gdb/i386ly-tdep.c')
-rw-r--r--gdb/i386ly-tdep.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/gdb/i386ly-tdep.c b/gdb/i386ly-tdep.c
index 3f87816..0d2ef41 100644
--- a/gdb/i386ly-tdep.c
+++ b/gdb/i386ly-tdep.c
@@ -32,7 +32,7 @@ i386lynx_saved_pc_after_call (frame)
struct frame_info *frame;
{
char opcode[7];
- static const char call_inst[] = {0x9a, 0, 0, 0, 0, 8, 0}; /* lcall 0x8,0x0 */
+ static const unsigned char call_inst[] = {0x9a, 0, 0, 0, 0, 8, 0}; /* lcall 0x8,0x0 */
read_memory (frame->pc - 7, opcode, 7);
if (memcmp (opcode, call_inst, 7) == 0)