diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-08-26 22:05:35 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-08-26 22:05:35 +0000 |
| commit | f8a5802d8e6434a4ffb3f9e09b8c128c6bc7fc83 (patch) | |
| tree | 1c41a4ea3532a9eec7178ecc4c064e98c38045df /apps | |
| parent | 5d36aaf249f4f7baf752f3ecc5c252de05cd7166 (diff) | |
| download | rockbox-f8a5802d8e6434a4ffb3f9e09b8c128c6bc7fc83.zip rockbox-f8a5802d8e6434a4ffb3f9e09b8c128c6bc7fc83.tar.gz rockbox-f8a5802d8e6434a4ffb3f9e09b8c128c6bc7fc83.tar.bz2 rockbox-f8a5802d8e6434a4ffb3f9e09b8c128c6bc7fc83.tar.xz | |
Fixed pointer types & struct font
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5016 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps')
| -rw-r--r-- | apps/plugins/lib/gray_putsxy.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/lib/gray_putsxy.c b/apps/plugins/lib/gray_putsxy.c index 20af8a3..906b0e1 100644 --- a/apps/plugins/lib/gray_putsxy.c +++ b/apps/plugins/lib/gray_putsxy.c @@ -37,7 +37,7 @@ void gray_putsxy(int x, int y, const unsigned char *str) { int ch, width; - unsigned char *bits; + const unsigned char *bits; struct font *pf = _graybuf->curfont; if ((unsigned) x >= (unsigned) _graybuf->width |