summaryrefslogtreecommitdiff
path: root/apps/eq_menu.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 /apps/eq_menu.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 'apps/eq_menu.c')
-rw-r--r--apps/eq_menu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/eq_menu.c b/apps/eq_menu.c
index 5dc554316c..63c6fa20f8 100644
--- a/apps/eq_menu.c
+++ b/apps/eq_menu.c
@@ -719,7 +719,7 @@ static bool eq_save_preset(void)
719 /* allow user to modify filename */ 719 /* allow user to modify filename */
720 while (true) { 720 while (true) {
721 if (!kbd_input(filename, sizeof filename)) { 721 if (!kbd_input(filename, sizeof filename)) {
722 fd = creat(filename,0); 722 fd = creat(filename, O_WRONLY);
723 if (fd < 0) 723 if (fd < 0)
724 gui_syncsplash(HZ, true, str(LANG_FAILED)); 724 gui_syncsplash(HZ, true, str(LANG_FAILED));
725 else 725 else