[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Incomplete structure initialization in confdefs.h
- Date: 15 Jul 1999 18:13:32 -0400
- From: ian at airs.com (Ian Lance Taylor)
- Subject: Incomplete structure initialization in confdefs.h
There is an incomplete structure initialization in
c/src/exec/sapi/include/confdefs.h
in the 19990528 snapshot.
This causes an unnecessary warning when compiling with gcc -W (this
warning is only generated by -W, not by -Wall).
Here is a patch.
Ian
Index: confdefs.h
===================================================================
RCS file: /zembu/cvsfiles/devo/rtems/c/src/exec/sapi/include/confdefs.h,v
retrieving revision 1.1.1.1
diff -u -r1.1.1.1 confdefs.h
--- confdefs.h 1999/06/01 18:30:12 1.1.1.1
+++ confdefs.h 1999/07/15 22:12:06
@@ -315,7 +315,7 @@
#ifdef STACK_CHECKER_ON
STACK_CHECKER_EXTENSION,
#endif
- { NULL, NULL, NULL, NULL, NULL, NULL, NULL }
+ { NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL }
};
#define CONFIGURE_NUMBER_OF_INITIAL_EXTENSIONS \