From b261cd74877c76ab1795e4a5e46b8cbe066cd5aa Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 19:56:46 +0000 Subject: [PATCH] fix: update test_stress.c to use new dispatcher API and remove transport.o dependency Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/makefile b/makefile index 4c3b9df..297806d 100644 --- a/makefile +++ b/makefile @@ -22,7 +22,7 @@ test_cli: test_cli.o engine.o cli.o transport.o wav_io.o dispatcher.o test_double_process: test_double_process.o engine.o transport.o wav_io.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_stress: test_stress.o dispatcher.o transport.o +test_stress: test_stress.o dispatcher.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) test_wav_io: test_wav_io.o wav_io.o