s/int/unsigned/ since GCC 4.3.2 produces code which doesn't stop.
This commit is contained in:
committed by
grischka
parent
1e776b29d3
commit
fb0ac27691
@ -311,7 +311,11 @@ test\14\
|
|||||||
|
|
||||||
void string_test()
|
void string_test()
|
||||||
{
|
{
|
||||||
|
#if defined(__x86_64__) && defined(__GNUC__)
|
||||||
|
unsigned int b;
|
||||||
|
#else
|
||||||
int b;
|
int b;
|
||||||
|
#endif
|
||||||
printf("string:\n");
|
printf("string:\n");
|
||||||
printf("\141\1423\143\n");/* dezdez test */
|
printf("\141\1423\143\n");/* dezdez test */
|
||||||
printf("\x41\x42\x43\x3a\n");
|
printf("\x41\x42\x43\x3a\n");
|
||||||
|
|||||||
Reference in New Issue
Block a user