summaryrefslogtreecommitdiff
path: root/apps/plugins/shortcuts/shortcuts_common.c
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/shortcuts/shortcuts_common.c')
-rw-r--r--apps/plugins/shortcuts/shortcuts_common.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/shortcuts/shortcuts_common.c b/apps/plugins/shortcuts/shortcuts_common.c
index 68817d3081..dee1657afc 100644
--- a/apps/plugins/shortcuts/shortcuts_common.c
+++ b/apps/plugins/shortcuts/shortcuts_common.c
@@ -85,7 +85,7 @@ bool load_sc_file(sc_file_t *file, char *filename, bool must_exist,
85 /* The file didn't exist on disk */ 85 /* The file didn't exist on disk */
86 if (!must_exist) { 86 if (!must_exist) {
87 DEBUGF("Trying to create link file '%s'...\n", filename); 87 DEBUGF("Trying to create link file '%s'...\n", filename);
88 fd = rb->creat(filename); 88 fd = rb->creat(filename, 0666);
89 if (fd < 0){ 89 if (fd < 0){
90 /* For some reason we couldn't create the file, 90 /* For some reason we couldn't create the file,
91 * so return an error message and exit */ 91 * so return an error message and exit */