From 9c4386b7fd9af993d1576826c5e4a36ec0f2aa1b Mon Sep 17 00:00:00 2001 From: Joey Yakimowich-Payne Date: Mon, 20 Apr 2020 09:08:08 -0600 Subject: [PATCH] Fix cast type --- tests/include/tast2.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/include/tast2.h b/tests/include/tast2.h index 3c6148a..e26d660 100644 --- a/tests/include/tast2.h +++ b/tests/include/tast2.h @@ -23,7 +23,7 @@ extern "C" { #define BOOL true #define MATHEXPR (1 + 2/3*20 - 100) #define ANDEXPR (100 & 11000) -#define CASTEXPR (int) 34 +#define CASTEXPR (char) 34 #define NULLCHAR '\0' #define OCTCHAR '\012'