$OpenBSD: patch-src_configfile_c,v 1.1.1.1 2019/12/07 02:06:45 bcallah Exp $

Fix occurrences of code where char is considered as signed on all platforms.

Index: src/configfile.c
--- src/configfile.c.orig
+++ src/configfile.c
@@ -166,7 +166,7 @@ static void _load_draw_rule_record(mIniRead *ini)
 static void _normalize_panel_layout(ConfigData *cf)
 {
 	char *pc;
-	char buf[4];
+	signed char buf[4];
 	int i,no,pos;
 
 	//----- ペイン
