diff options
author | bapt <bapt@FreeBSD.org> | 2015-08-09 11:47:01 +0000 |
---|---|---|
committer | bapt <bapt@FreeBSD.org> | 2015-08-09 11:47:01 +0000 |
commit | b0838ae3bddb4b8ad9d4be35a3a8e30c4c876d07 (patch) | |
tree | 39b5d57c4f5d2ca26f7f166b4456bced23d5d496 /lib/libc | |
parent | 4f14f063cfe3d3f206f765549c6026fb89af9958 (diff) | |
download | FreeBSD-src-b0838ae3bddb4b8ad9d4be35a3a8e30c4c876d07.zip FreeBSD-src-b0838ae3bddb4b8ad9d4be35a3a8e30c4c876d07.tar.gz |
Remove useless variable
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/locale/collate.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/locale/collate.c b/lib/libc/locale/collate.c index a8e4827..d2f9044 100644 --- a/lib/libc/locale/collate.c +++ b/lib/libc/locale/collate.c @@ -99,8 +99,8 @@ __collate_load(const char *encoding, __unused locale_t unused) int __collate_load_tables(const char *encoding) { - int ret = __collate_load_tables_l(encoding, &__xlocale_global_collate); - return ret; + + return (__collate_load_tables_l(encoding, &__xlocale_global_collate)); } int |