svn commit: trunk/uClibc/test/misc

vapier at uclibc.org vapier at uclibc.org
Thu Feb 16 03:53:15 UTC 2006


Author: vapier
Date: 2006-02-15 19:53:13 -0800 (Wed, 15 Feb 2006)
New Revision: 14069

Log:
fix const position typo as pointed out by ia64/gcc

Modified:
   trunk/uClibc/test/misc/dirent.c


Changeset:
Modified: trunk/uClibc/test/misc/dirent.c
===================================================================
--- trunk/uClibc/test/misc/dirent.c	2006-02-16 03:21:44 UTC (rev 14068)
+++ trunk/uClibc/test/misc/dirent.c	2006-02-16 03:53:13 UTC (rev 14069)
@@ -6,7 +6,7 @@
 #include <dirent.h>
 
 #define _DTIFY(DT) [DT] #DT
-const char const *types[] = {
+const char * const types[] = {
 	_DTIFY(DT_UNKNOWN),
 	_DTIFY(DT_FIFO),
 	_DTIFY(DT_CHR),




More information about the uClibc-cvs mailing list