From: johanknol Date: Tue, 23 Oct 2001 08:23:52 +0000 (+0000) Subject: fixed a gcc warning X-Git-Url: https://git.gag.com/?a=commitdiff_plain;h=96c1151ade2f0f03c6f04860b609a8748c3e1273;p=fw%2Fsdcc fixed a gcc warning git-svn-id: https://sdcc.svn.sourceforge.net/svnroot/sdcc/trunk/sdcc@1433 4a8a32a2-be11-0410-ad9d-d568d2c75423 --- diff --git a/support/regression/tests/longlit.c b/support/regression/tests/longlit.c index 8dcda52f..ecee0b25 100644 --- a/support/regression/tests/longlit.c +++ b/support/regression/tests/longlit.c @@ -9,7 +9,7 @@ #define T1_RELOAD_VALUE -(2*OSCILLATOR)/(32*12*BAUD) -char T1=T1_RELOAD_VALUE; +unsigned char T1=T1_RELOAD_VALUE; void test (void) { ASSERT(T1==0xfd);