diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2024-08-17 10:42:17 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2024-08-17 10:42:17 -0400 |
commit | 9462e5aae63949215ea9b25fa52921517fd9fca3 (patch) | |
tree | eaf2edbb76395684c63755c78a0c02f4e2ba465e /src/sighook.c | |
parent | f1b765729931260a808d5f56b28e6871709c84bc (diff) | |
download | bfs-9462e5aae63949215ea9b25fa52921517fd9fca3.tar.xz |
sighook: Fix typo in comment
Diffstat (limited to 'src/sighook.c')
-rw-r--r-- | src/sighook.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sighook.c b/src/sighook.c index 0e9fddb..c799777 100644 --- a/src/sighook.c +++ b/src/sighook.c @@ -50,7 +50,7 @@ struct arc { void *ptr; #if BFS_POSIX_SEMAPHORES >= 0 - /** A semaphore for arc_wake(). */ + /** A semaphore for arc_wait(). */ sem_t sem; /** sem_init() result. */ int sem_status; |