diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2023-10-03 13:07:21 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2023-10-03 13:07:21 -0400 |
commit | a96ddeb7dc528d29d05f52a9b8857b2f8924fddc (patch) | |
tree | e2a9f86399f4b5da48a27e94d8b10812e63569f7 /src/bfstd.c | |
parent | 9b1ee97d13985f42b09f02c8a25459a910004eb5 (diff) | |
download | bfs-a96ddeb7dc528d29d05f52a9b8857b2f8924fddc.tar.xz |
thread: s/call_once/invoke_once/
call_once() is a reserved identifier from C11.
Diffstat (limited to 'src/bfstd.c')
-rw-r--r-- | src/bfstd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bfstd.c b/src/bfstd.c index 1a5a67d..fcf4a6d 100644 --- a/src/bfstd.c +++ b/src/bfstd.c @@ -651,7 +651,7 @@ static bool xiswprint(wchar_t c, enum wesc_flags flags) { /** Get the length of the longest printable prefix of a string. */ static size_t printable_len(const char *str, size_t len, enum wesc_flags flags) { static pthread_once_t once = PTHREAD_ONCE_INIT; - call_once(&once, char_cache_init); + invoke_once(&once, char_cache_init); // Fast path: avoid multibyte checks size_t i, word; |