From d44fb19da9f3d06f8873958e10647d5f0eae7789 Mon Sep 17 00:00:00 2001 From: TazyFoundSoup Date: Tue, 14 Apr 2026 11:08:31 +1000 Subject: fix(stream): Stdio bridge write callback and const correctness --- include/tinyff/common.h | 2 +- include/tinyff/stream.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'include/tinyff') diff --git a/include/tinyff/common.h b/include/tinyff/common.h index 3653807..c22f595 100644 --- a/include/tinyff/common.h +++ b/include/tinyff/common.h @@ -62,7 +62,7 @@ typedef struct { typedef struct { // Debug settings - ff_stream* ff_debug_stream; + ff_stream ff_debug_stream; ff_flag ff_debug_enabled; // Allocation diff --git a/include/tinyff/stream.h b/include/tinyff/stream.h index 250767e..95c5884 100644 --- a/include/tinyff/stream.h +++ b/include/tinyff/stream.h @@ -4,7 +4,7 @@ #include -#define FF_NULL_STREAM {0} +#define FF_NULL_STREAM (ff_stream){0} -- cgit v1.2.3