summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorTavian Barnes <tavianator@tavianator.com>2024-08-17 10:42:17 -0400
committerTavian Barnes <tavianator@tavianator.com>2024-08-17 10:42:17 -0400
commit9462e5aae63949215ea9b25fa52921517fd9fca3 (patch)
treeeaf2edbb76395684c63755c78a0c02f4e2ba465e /src
parentf1b765729931260a808d5f56b28e6871709c84bc (diff)
downloadbfs-9462e5aae63949215ea9b25fa52921517fd9fca3.tar.xz
sighook: Fix typo in comment
Diffstat (limited to 'src')
-rw-r--r--src/sighook.c2
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;