fix signed char issues

This commit is contained in:
pvalchev 2002-02-20 19:31:29 +00:00
parent 85c45dc5dd
commit 0d2558d498

View File

@ -0,0 +1,14 @@
$OpenBSD: patch-font_c,v 1.1 2002/02/20 19:31:29 pvalchev Exp $
--- font.c.orig Sat May 26 07:51:43 2001
+++ font.c Wed Feb 20 12:15:26 2002
@@ -80,8 +80,8 @@ int vfontType;
typedef struct
{
- char offset;
- char width;
+ int offset;
+ int width;
}
FontCharInfoType;
FontCharInfoType *fntOW[256];