diff options
Diffstat (limited to 'apps/plugins/clock.c')
| -rw-r--r-- | apps/plugins/clock.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/clock.c b/apps/plugins/clock.c index 28cd223..19c7dac 100644 --- a/apps/plugins/clock.c +++ b/apps/plugins/clock.c @@ -903,7 +903,7 @@ void save_settings(bool interface) rb->lcd_update(); } - fd = rb->creat(default_filename, O_WRONLY); /* create the settings file */ + fd = rb->creat(default_filename); /* create the settings file */ if(fd >= 0) /* file exists, save successful */ { |