summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2004-08-26 22:05:35 +0000
committerJens Arnold <amiconn@rockbox.org>2004-08-26 22:05:35 +0000
commitf8a5802d8e6434a4ffb3f9e09b8c128c6bc7fc83 (patch)
tree1c41a4ea3532a9eec7178ecc4c064e98c38045df /apps/plugins
parent5d36aaf249f4f7baf752f3ecc5c252de05cd7166 (diff)
downloadrockbox-f8a5802d8e6434a4ffb3f9e09b8c128c6bc7fc83.tar.gz
rockbox-f8a5802d8e6434a4ffb3f9e09b8c128c6bc7fc83.zip
Fixed pointer types & struct font
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5016 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/lib/gray_putsxy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/gray_putsxy.c b/apps/plugins/lib/gray_putsxy.c
index 20af8a3cbf..906b0e1b38 100644
--- a/apps/plugins/lib/gray_putsxy.c
+++ b/apps/plugins/lib/gray_putsxy.c
@@ -37,7 +37,7 @@
37void gray_putsxy(int x, int y, const unsigned char *str) 37void gray_putsxy(int x, int y, const unsigned char *str)
38{ 38{
39 int ch, width; 39 int ch, width;
40 unsigned char *bits; 40 const unsigned char *bits;
41 struct font *pf = _graybuf->curfont; 41 struct font *pf = _graybuf->curfont;
42 42
43 if ((unsigned) x >= (unsigned) _graybuf->width 43 if ((unsigned) x >= (unsigned) _graybuf->width