diff options
author | Stu Grossman <grossman@cygnus> | 1993-11-29 19:40:08 +0000 |
---|---|---|
committer | Stu Grossman <grossman@cygnus> | 1993-11-29 19:40:08 +0000 |
commit | d9542046591a94cb74d87324749133d346a007f9 (patch) | |
tree | 2d3e400a3f643bbe0d909f5c081a8943189ceef5 /gdb/i386ly-tdep.c | |
parent | b1955f0b2aa79e25a26172252216fd7e32d5178d (diff) | |
download | gdb-d9542046591a94cb74d87324749133d346a007f9.zip gdb-d9542046591a94cb74d87324749133d346a007f9.tar.gz gdb-d9542046591a94cb74d87324749133d346a007f9.tar.bz2 |
* i386ly-tdep.c (i386lynx_saved_pc_after_call): Change call_inst
to unsigned char to avoid domain warning for some values.
Diffstat (limited to 'gdb/i386ly-tdep.c')
-rw-r--r-- | gdb/i386ly-tdep.c | 2 |
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) |