s/int/unsigned/ since GCC 4.3.2 produces code which doesn't stop.

This commit is contained in:
Shinichiro Hamaji 2008-12-02 02:41:48 +09:00 committed by grischka
parent 1e776b29d3
commit fb0ac27691

View File

@ -311,7 +311,11 @@ test\14\
void string_test()
{
#if defined(__x86_64__) && defined(__GNUC__)
unsigned int b;
#else
int b;
#endif
printf("string:\n");
printf("\141\1423\143\n");/* dezdez test */
printf("\x41\x42\x43\x3a\n");