diff options
author | Reuben Thomas <rrt@sc3d.org> | 2013-10-12 14:07:25 +0200 |
---|---|---|
committer | Ondřej Bílka <neleai@seznam.cz> | 2013-10-12 14:32:09 +0200 |
commit | 9cd8330240f930c5509592cd8d57133e52ac30e7 (patch) | |
tree | a9a2aa35568c193c2e0379806aba906a7601118e /locale | |
parent | b7ea74f0747456c99421f14f963082b1dcb6c30d (diff) | |
download | glibc-9cd8330240f930c5509592cd8d57133e52ac30e7.zip glibc-9cd8330240f930c5509592cd8d57133e52ac30e7.tar.gz glibc-9cd8330240f930c5509592cd8d57133e52ac30e7.tar.bz2 |
Fix typo in setlocale.c. Fixes BZ #15764
Diffstat (limited to 'locale')
-rw-r--r-- | locale/setlocale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/locale/setlocale.c b/locale/setlocale.c index be95519..e83a156 100644 --- a/locale/setlocale.c +++ b/locale/setlocale.c @@ -412,7 +412,7 @@ setlocale (int category, const char *locale) /* We must not simply free a global locale since we have no control over the usage. So we mark it as un-deletable. - Note: do not remove the `if', it's necessary to copy with + Note: do not remove the `if', it's necessary to cope with the builtin locale data. */ if (newdata->usage_count != UNDELETABLE) newdata->usage_count = UNDELETABLE; |