diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-07-08 15:02:58 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-07-08 15:02:58 +0530 |
commit | 7c33f1e52c7ed39416b24c894e61d39eabf6cd14 (patch) | |
tree | 4f19bb24fde0dfd9cd02bd1e87dd75a42dd6cce0 /localedata/tests-mbwc/dat_strcoll.c | |
parent | 87868c2418fb74357757e3b739ce5b76b17a8929 (diff) | |
download | glibc-7c33f1e52c7ed39416b24c894e61d39eabf6cd14.tar glibc-7c33f1e52c7ed39416b24c894e61d39eabf6cd14.tar.gz glibc-7c33f1e52c7ed39416b24c894e61d39eabf6cd14.tar.bz2 glibc-7c33f1e52c7ed39416b24c894e61d39eabf6cd14.zip |
Fix Wundef warning with SHOJI_IS_RIGHT
The macro is not defined anywhere, so it looks like we're convinced
that Shoji is wrong :)
Diffstat (limited to 'localedata/tests-mbwc/dat_strcoll.c')
-rw-r--r-- | localedata/tests-mbwc/dat_strcoll.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/localedata/tests-mbwc/dat_strcoll.c b/localedata/tests-mbwc/dat_strcoll.c index 168425ce06..b729ae9e89 100644 --- a/localedata/tests-mbwc/dat_strcoll.c +++ b/localedata/tests-mbwc/dat_strcoll.c @@ -72,22 +72,14 @@ TST_STRCOLL tst_strcoll_loc [] = { { /* <WAIVER> */ /*input.*/ { "B", "a" }, /* #4 */ -#ifdef SHOJI_IS_RIGHT - /*expect*/ { 0,0,-1, }, -#else /* XXX We are not testing the C locale. */ /*expect*/ { 0,0,+1, }, -#endif }, { /* <WAIVER> */ /*input.*/ { "a", "B" }, /* #5 */ -#ifdef SHOJI_IS_RIGHT - /*expect*/ { 0,0,+1, }, -#else /* XXX We are not testing the C locale. */ /*expect*/ { 0,0,-1, }, -#endif }, { /*input.*/ { "b", "A" }, /* #6 */ /*expect*/ { 0,0,+1, }, |