From 01d7746971272123ab0d098450580877ab7bad72 Mon Sep 17 00:00:00 2001 From: AZero13 Date: Wed, 17 Dec 2025 18:27:44 -0500 Subject: [PATCH] Use debug_return_bool, not debug_return_int --- lib/iolog/iolog_eof.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/iolog/iolog_eof.c b/lib/iolog/iolog_eof.c index e8825f4665..70574188e2 100644 --- a/lib/iolog/iolog_eof.c +++ b/lib/iolog/iolog_eof.c @@ -45,5 +45,5 @@ iolog_eof(struct iolog_file *iol) else #endif ret = feof(iol->fd.f) != 0; - debug_return_int(ret); + debug_return_bool(ret); }