Browse Source

fix const position typo as pointed out by ia64/gcc

Mike Frysinger 18 years ago
parent
commit
80753368c1
1 changed files with 1 additions and 1 deletions
  1. 1 1
      test/misc/dirent.c

+ 1 - 1
test/misc/dirent.c

@@ -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),