summaryrefslogtreecommitdiffstats
path: root/firmware/font.c
diff options
context:
space:
mode:
authorDan Everton <dan@iocaine.org>2006-05-30 11:26:41 +0000
committerDan Everton <dan@iocaine.org>2006-05-30 11:26:41 +0000
commitb2ec716534441d9dea42051ce8bf2c1df227685a (patch)
tree34e4dfc8a4c2c595209437ccfb62fc1405860845 /firmware/font.c
parente41c85806ecc5b8ed1383f856595d61ad45d6657 (diff)
downloadrockbox-b2ec716534441d9dea42051ce8bf2c1df227685a.tar.gz
rockbox-b2ec716534441d9dea42051ce8bf2c1df227685a.zip
Use correct file mode when creating files. Fixes task 5452
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@10020 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/font.c')
-rw-r--r--firmware/font.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/font.c b/firmware/font.c
index 5eb6f7450f..40f99b330d 100644
--- a/firmware/font.c
+++ b/firmware/font.c
@@ -522,7 +522,7 @@ void glyph_cache_save(void)
if (fnt_file >= 0) {
- glyph_file = creat(GLYPH_CACHE_FILE, 0);
+ glyph_file = creat(GLYPH_CACHE_FILE, O_WRONLY);
if (glyph_file < 0) return;