lchat

A line oriented chat front end for ii.
git clone git://git.suckless.org/lchat
Log | Files | Refs | README

commit 743a82b6dab7fe68ec7df46e90625c7c966b8c96
parent 9d1bae536e78c285543f6b7b4594aa603e75faa8
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:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

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)