From 2f53629feaeb793e1b7f69561f0887b06b0f463d Mon Sep 17 00:00:00 2001 From: Witold Filipczyk Date: Sat, 29 Jan 2022 17:03:55 +0100 Subject: [PATCH] [format] signed short . Compilation fix --- src/document/format.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/document/format.h b/src/document/format.h index dc52984ad..b6b15b23b 100644 --- a/src/document/format.h +++ b/src/document/format.h @@ -25,7 +25,7 @@ enum text_style_format { AT_NO_ENTITIES = 64, }; -typedef unsigned short text_style_format_T; +typedef signed short text_style_format_T; struct text_style_color { color_T foreground;