s/int/unsigned/ since GCC 4.3.2 produces code which doesn't stop.
This commit is contained in:
parent
1e776b29d3
commit
fb0ac27691
1 changed files with 4 additions and 0 deletions
|
@ -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");
|
||||
|
|
Loading…
Reference in a new issue