diff options
author | Rosen Penev | 2020-12-21 19:55:06 -0800 |
---|---|---|
committer | Nikias Bassen | 2021-06-22 01:11:06 +0200 |
commit | 904cbea78fb91438eafc867ccd8a9f9ab66eb5ec (patch) | |
tree | dffee33f0723af7c142a3f690f3f25df6050db9b /src/plist.c | |
parent | 0efe610c1d0bfd6bded30bacd47809544db84882 (diff) | |
download | libplist-904cbea78fb91438eafc867ccd8a9f9ab66eb5ec.tar.gz libplist-904cbea78fb91438eafc867ccd8a9f9ab66eb5ec.tar.bz2 |
[clang-tidy] Avoid global non-const variables
Found with cppcoreguidelines-avoid-non-const-global-variables
Signed-off-by: Rosen Penev <rosenp@gmail.com>
Diffstat (limited to 'src/plist.c')
-rw-r--r-- | src/plist.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/plist.c b/src/plist.c index 4cb6206..862a54c 100644 --- a/src/plist.c +++ b/src/plist.c @@ -69,8 +69,8 @@ typedef volatile struct { int state; } thread_once_t; -static thread_once_t init_once = {0, 0}; -static thread_once_t deinit_once = {0, 0}; +static const thread_once_t init_once = {0, 0}; +static const thread_once_t deinit_once = {0, 0}; void thread_once(thread_once_t *once_control, void (*init_routine)(void)) { |