summaryrefslogtreecommitdiffstats
path: root/test/sem_test.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/sem_test.c')
-rw-r--r--test/sem_test.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/sem_test.c b/test/sem_test.c
index 5db7c08..a1f2a0e 100644
--- a/test/sem_test.c
+++ b/test/sem_test.c
@@ -68,13 +68,13 @@ main(int argc, char** argv)
return 1;
}
- ZixThread reader_thread;
+ ZixThread reader_thread; // NOLINT
if (zix_thread_create(&reader_thread, 128, reader, NULL)) {
fprintf(stderr, "Failed to create reader thread\n");
return 1;
}
- ZixThread writer_thread;
+ ZixThread writer_thread; // NOLINT
if (zix_thread_create(&writer_thread, 128, writer, NULL)) {
fprintf(stderr, "Failed to create writer thread\n");
return 1;