diff options
| author | Björn Stenberg <bjorn@haxx.se> | 2003-01-14 15:07:19 +0000 |
|---|---|---|
| committer | Björn Stenberg <bjorn@haxx.se> | 2003-01-14 15:07:19 +0000 |
| commit | 4b6a1f25663c4754d64f215a8284480948c59a85 (patch) | |
| tree | f099d1e3abec271959c153e29d281f34d7b0c991 | |
| parent | 32bfc9940c4e35807979b739aa824e4867c13987 (diff) | |
| download | rockbox-4b6a1f25663c4754d64f215a8284480948c59a85.zip rockbox-4b6a1f25663c4754d64f215a8284480948c59a85.tar.gz rockbox-4b6a1f25663c4754d64f215a8284480948c59a85.tar.bz2 rockbox-4b6a1f25663c4754d64f215a8284480948c59a85.tar.xz | |
Made unicode2iso() static.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@3087 a1c6a512-1295-4272-9138-f99709370657
| -rw-r--r-- | firmware/drivers/fat.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/drivers/fat.c b/firmware/drivers/fat.c index f468111..c430a42 100644 --- a/firmware/drivers/fat.c +++ b/firmware/drivers/fat.c @@ -1577,7 +1577,7 @@ int fat_opendir(struct fat_dir *dir, unsigned int startcluster) } /* convert from unicode to a single-byte charset */ -void unicode2iso(unsigned char* unicode, unsigned char* iso, int count ) +static void unicode2iso(unsigned char* unicode, unsigned char* iso, int count ) { int i; |