Commit b8b5ac63765360aacf356fb2a488c8bbfe59c286

Authored by bellard
1 parent 40b6ecc6

do not assume signed char


git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1121 c046a42c-6fe2-441c-8c8c-71466251a162
Showing 1 changed file with 1 additions and 1 deletions
i386-dis.c
@@ -1832,7 +1832,7 @@ static bfd_vma start_pc; @@ -1832,7 +1832,7 @@ static bfd_vma start_pc;
1832 * The function returns the length of this instruction in bytes. 1832 * The function returns the length of this instruction in bytes.
1833 */ 1833 */
1834 1834
1835 -static char intel_syntax; 1835 +static int8_t intel_syntax;
1836 static char open_char; 1836 static char open_char;
1837 static char close_char; 1837 static char close_char;
1838 static char separator_char; 1838 static char separator_char;