bnicholes 2004/05/24 11:39:50
Modified: test abts.c
Log:
List all local variable first otherwise the Metrowerks compiler complains
Revision Changes Path
1.8 +1 -1 apr/test/abts.c
Index: abts.c
===================================================================
RCS file: /home/cvs/apr/test/abts.c,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -r1.7 -r1.8
--- abts.c 24 May 2004 12:54:25 -0000 1.7
+++ abts.c 24 May 2004 18:39:50 -0000 1.8
@@ -88,8 +88,8 @@
abts_suite *abts_add_suite(abts_suite *suite, const char *suite_name)
{
sub_suite *subsuite;
- curr_char = 0;
char *p;
+ curr_char = 0;
/* Only end the suite if we actually ran it */
if (suite && suite->tail &&!suite->tail->not_run) {