$OpenBSD: patch-mlib_include_mUtilStr_h,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: mlib/include/mUtilStr.h
--- mlib/include/mUtilStr.h.orig
+++ mlib/include/mUtilStr.h
@@ -55,7 +55,7 @@ mBool mIsMatchString(const char *text,const char *patt
 mBool mIsMatchStringSum(const char *text,const char *pattern,char split,mBool bNoCase);
 int mGetEqStringIndex(const char *text,const char *enumtext,char split,mBool bNoCase);
 
-char *mGetFormatStrParam(const char *text,const char *key,char split,char paramsplit,mBool bNoCase);
+char *mGetFormatStrParam(const char *text,const char *key,signed char split,signed char paramsplit,mBool bNoCase);
 
 #ifdef __cplusplus
 }
