Index: ChangeLog =================================================================== RCS file: /cvs/ecos/ecos/packages/compat/uitron/current/ChangeLog,v retrieving revision 1.24 diff -u -r1.24 ChangeLog --- ChangeLog 24 Feb 2003 14:08:51 -0000 1.24 +++ ChangeLog 3 Aug 2005 21:01:41 -0000 @@ -1,3 +1,7 @@ +2005-08-02 Andrew Lunn + + * tests/test2.c (task1): Cast to fix compiler warning. + 2003-02-24 Jonathan Larmour * cdl/uitron.cdl: Update doc link. Index: tests/test2.c =================================================================== RCS file: /cvs/ecos/ecos/packages/compat/uitron/current/tests/test2.c,v retrieving revision 1.6 diff -u -r1.6 test2.c --- tests/test2.c 23 May 2002 23:00:09 -0000 1.6 +++ tests/test2.c 3 Aug 2005 21:01:43 -0000 @@ -143,7 +143,7 @@ T_RMPL mpl_info; UINT flagptn; static char foo[] = "Test message"; - T_MSG *msgptr = foo; + T_MSG *msgptr = (T_MSG *)foo; T_MSG *rxptr = NULL; VP blfptr = (VP)foo; VP blkptr = (VP)foo;