about summary refs log tree commit diff
path: root/src/dirent
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/dirent
parentc4bc0b1a64e1ef1e105df84401805a16e8dbe82a (diff)
downloadmusl-32482f61da7650ff10741bd5aedd66bbc3ea165b.tar.gz
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/dirent')
-rw-r--r--src/dirent/__dirent.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dirent/__dirent.h b/src/dirent/__dirent.h
index 32871baf..101b0368 100644
--- a/src/dirent/__dirent.h
+++ b/src/dirent/__dirent.h
@@ -4,6 +4,6 @@ struct __dirstream
 	off_t tell;
 	int buf_pos;
 	int buf_end;
-	volatile int lock[2];
+	volatile int lock[1];
 	char buf[2048];
 };