From a60382e044977c026415f006c5e0dc7c9f2c85f2 Mon Sep 17 00:00:00 2001 From: Alexander Batalov Date: Mon, 25 Jul 2022 00:02:54 +0300 Subject: [PATCH] Fix type --- src/scripts.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/scripts.cc b/src/scripts.cc index 39a2cc4..17ee020 100644 --- a/src/scripts.cc +++ b/src/scripts.cc @@ -1726,7 +1726,7 @@ static int _scr_header_load() } while (1) { - char ch = fileReadChar(stream); + int ch = fileReadChar(stream); if (ch == -1) { break; }