diff options
author | Mike Frysinger <vapier@gentoo.org> | 2006-02-16 03:53:13 +0000 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2006-02-16 03:53:13 +0000 |
commit | 80753368c1603ac969dd853f1bd61e7d6226052d (patch) | |
tree | 5164eaa283089a1eb9f49fe7382b3caaa8f1bd75 | |
parent | c332ab3207185efdfe4c4e7ab0a3b15150d33f91 (diff) |
fix const position typo as pointed out by ia64/gcc
-rw-r--r-- | test/misc/dirent.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/misc/dirent.c b/test/misc/dirent.c index c348c0db3..491e3cf75 100644 --- a/test/misc/dirent.c +++ b/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), |