summaryrefslogtreecommitdiff
path: root/src/locale/locale_map.c
diff options
context:
space:
mode:
authorJens Gustedt <Jens.Gustedt@inria.fr>2018-01-03 14:17:12 +0100
committerRich Felker <dalias@aerifal.cx>2018-01-09 13:15:27 -0500
commit32482f61da7650ff10741bd5aedd66bbc3ea165b (patch)
tree8f6e3736ffffae67f3411e86f7a56f2ca2080137 /src/locale/locale_map.c
parentc4bc0b1a64e1ef1e105df84401805a16e8dbe82a (diff)
downloadmusl-32482f61da7650ff10741bd5aedd66bbc3ea165b.tar.gz
revise the definition of multiple basic locks in the code
In all cases this is just a change from two volatile int to one.
Diffstat (limited to 'src/locale/locale_map.c')
-rw-r--r--src/locale/locale_map.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/locale/locale_map.c b/src/locale/locale_map.c
index 188fcf39..79542310 100644
--- a/src/locale/locale_map.c
+++ b/src/locale/locale_map.c
@@ -26,7 +26,7 @@ static const char envvars[][12] = {
const struct __locale_map *__get_locale(int cat, const char *val)
{
- static volatile int lock[2];
+ static volatile int lock[1];
static void *volatile loc_head;
const struct __locale_map *p;
struct __locale_map *new = 0;