diff options
author | Jens Gustedt <Jens.Gustedt@inria.fr> | 2018-01-03 14:17:12 +0100 |
---|---|---|
committer | Rich Felker <dalias@aerifal.cx> | 2018-01-09 13:15:27 -0500 |
commit | 32482f61da7650ff10741bd5aedd66bbc3ea165b (patch) | |
tree | 8f6e3736ffffae67f3411e86f7a56f2ca2080137 /src/locale/setlocale.c | |
parent | c4bc0b1a64e1ef1e105df84401805a16e8dbe82a (diff) | |
download | musl-32482f61da7650ff10741bd5aedd66bbc3ea165b.tar.gz musl-32482f61da7650ff10741bd5aedd66bbc3ea165b.tar.bz2 musl-32482f61da7650ff10741bd5aedd66bbc3ea165b.tar.xz musl-32482f61da7650ff10741bd5aedd66bbc3ea165b.zip |
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/setlocale.c')
-rw-r--r-- | src/locale/setlocale.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/locale/setlocale.c b/src/locale/setlocale.c index 623660cc..40bc7ece 100644 --- a/src/locale/setlocale.c +++ b/src/locale/setlocale.c @@ -21,7 +21,7 @@ char *__strchrnul(const char *, int); char *setlocale(int cat, const char *name) { - static volatile int lock[2]; + static volatile int lock[1]; if ((unsigned)cat > LC_ALL) return 0; |