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/time/__tz.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/time') diff --git a/src/time/__tz.c b/src/time/__tz.c index 8cc96032..1dbb0b8f 100644 --- a/src/time/__tz.c +++ b/src/time/__tz.c @@ -27,7 +27,7 @@ static char old_tz_buf[32]; static char *old_tz = old_tz_buf; static size_t old_tz_size = sizeof old_tz_buf; -static volatile int lock[2]; +static volatile int lock[1]; static int getint(const char **p) { -- cgit v1.2.1