test: ignore comparison of integers of different signs warning - lchat - A line oriented chat front end for ii.
 (HTM) git clone git://git.suckless.org/lchat
 (DIR) Log
 (DIR) Files
 (DIR) Refs
 (DIR) README
       ---
 (DIR) commit 743a82b6dab7fe68ec7df46e90625c7c966b8c96
 (DIR) parent 9d1bae536e78c285543f6b7b4594aa603e75faa8
 (HTM) Author: Jan Klemkow <j.klemkow@wemelug.de>
       Date:   Thu, 20 Oct 2022 09:47:44 +0200
       
       test: ignore comparison of integers of different signs warning
       
       Diffstat:
         M Makefile                            |       2 +-
       
       1 file changed, 1 insertion(+), 1 deletion(-)
       ---
 (DIR) diff --git 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)