From 333b2c489b911d155ede2884a8cd7984295bbf7e Mon Sep 17 00:00:00 2001 From: Loic Coenen Date: Sat, 2 May 2026 19:47:54 +0000 Subject: [PATCH] fix: remove missing transport.h include and dependency Co-authored-by: aider (deepseek/deepseek-coder) --- makefile | 2 +- stress_test.c | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/makefile b/makefile index 7435aa7..4c3b9df 100644 --- a/makefile +++ b/makefile @@ -28,7 +28,7 @@ test_stress: test_stress.o dispatcher.o transport.o test_wav_io: test_wav_io.o wav_io.o $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) -test_stress.o: test_stress.c dispatcher.h transport.h +test_stress.o: test_stress.c dispatcher.h $(CC) $(CFLAGS) -c -o $@ $< main.o: main.c engine.h tui.h transport.h diff --git a/stress_test.c b/stress_test.c index b7bf947..067f82b 100644 --- a/stress_test.c +++ b/stress_test.c @@ -7,7 +7,6 @@ #include #include #include "dispatcher.h" -#include "transport.h" #include static volatile int keep_running = 1;