From 28fa93d4cc52739a1085fb931dd095333f4dc8af Mon Sep 17 00:00:00 2001 From: "Sven M. Hallberg" <pesco@khjk.org> Date: Fri, 4 Sep 2015 12:54:00 +0200 Subject: [PATCH] make overrun flag a bool to match its usage --- src/internal.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/internal.h b/src/internal.h index fa781811..8c047747 100644 --- a/src/internal.h +++ b/src/internal.h @@ -78,7 +78,7 @@ typedef struct HInputStream_ { char margin; // The number of bits on the end that is being read // towards that should be ignored. char endianness; - char overrun; + bool overrun; } HInputStream; typedef struct HSlistNode_ { -- GitLab