commit 743a82b6dab7fe68ec7df46e90625c7c966b8c96
Author:     Jan Klemkow <[email protected]>
AuthorDate: Thu Oct 20 09:47:44 2022 +0200
Commit:     Jan Klemkow <[email protected]>
CommitDate: Thu Oct 20 09:47:44 2022 +0200

    test: ignore comparison of integers of different signs warning

diff --git a/Makefile b/Makefile
index bc4d363..ff911d9 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ filter/indent: filter/indent.c util.o util.h
        $(CC) $(CFLAGS) -o $@ filter/indent.c util.o
 
 sl_test.o: sl_test.c slackline.h
-       $(CC) $(CFLAGS) -c -o $@ sl_test.c
+       $(CC) $(CFLAGS) -Wno-sign-compare -c -o $@ sl_test.c
 
 sl_test: sl_test.o slackline.o slackline.h
        $(CC) $(CFLAGS) -o $@ sl_test.o slackline.o $(LIBS)

Reply via email to