From b2ec716534441d9dea42051ce8bf2c1df227685a Mon Sep 17 00:00:00 2001 From: Dan Everton Date: Tue, 30 May 2006 11:26:41 +0000 Subject: 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 --- firmware/font.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'firmware') 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; -- cgit v1.2.3