From 32482f61da7650ff10741bd5aedd66bbc3ea165b Mon Sep 17 00:00:00 2001 From: Jens Gustedt Date: Wed, 3 Jan 2018 14:17:12 +0100 Subject: revise the definition of multiple basic locks in the code In all cases this is just a change from two volatile int to one. --- src/dirent/__dirent.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/dirent') 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]; }; -- cgit v1.2.1