summaryrefslogtreecommitdiff
path: root/apps/eq_menu.c
diff options
context:
space:
mode:
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