diff options
author | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-16 03:16:05 +0000 |
---|---|---|
committer | ths <ths@c046a42c-6fe2-441c-8c8c-71466251a162> | 2007-12-16 03:16:05 +0000 |
commit | ffe8ab83da7a3c8cf19c0f8ebeb19db857707410 (patch) | |
tree | 90d9e83181498cd5376f5839ee630a1d15a4dc3c /gdbstub.c | |
parent | 60fe76f38605e0e2eedb436d0945af283029c4e0 (diff) | |
download | qemu-ffe8ab83da7a3c8cf19c0f8ebeb19db857707410.tar.gz qemu-ffe8ab83da7a3c8cf19c0f8ebeb19db857707410.tar.bz2 qemu-ffe8ab83da7a3c8cf19c0f8ebeb19db857707410.zip |
Fix char* signedness, by Andre Przywara.
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@3816 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'gdbstub.c')
-rw-r--r-- | gdbstub.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -209,7 +209,7 @@ static int put_packet(GDBState *s, char *buf) *(p++) = tohex((csum) & 0xf); s->last_packet_len = p - s->last_packet; - put_buffer(s, s->last_packet, s->last_packet_len); + put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len); #ifdef CONFIG_USER_ONLY i = get_char(s); @@ -1189,7 +1189,7 @@ static void gdb_read_byte(GDBState *s, int ch) #ifdef DEBUG_GDB printf("Got NACK, retransmitting\n"); #endif - put_buffer(s, s->last_packet, s->last_packet_len); + put_buffer(s, (uint8_t *)s->last_packet, s->last_packet_len); } #ifdef DEBUG_GDB else if (ch == '+') |