diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-02-01 23:08:15 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-02-01 23:08:15 +0000 |
| commit | 67eb154146ea90cd25a383bcdd4a028704ef2218 (patch) | |
| tree | 06b528a996b0ab59b4b3f2b950069c56046a7a10 /apps/plugins/viewer.c | |
| parent | 98dc093317b615b2aa8ffe8d140945d75764a813 (diff) | |
| download | rockbox-67eb154146ea90cd25a383bcdd4a028704ef2218.zip rockbox-67eb154146ea90cd25a383bcdd4a028704ef2218.tar.gz rockbox-67eb154146ea90cd25a383bcdd4a028704ef2218.tar.bz2 rockbox-67eb154146ea90cd25a383bcdd4a028704ef2218.tar.xz | |
Removed 'mode' parameter from creat(). It wasn't pure posix anyway, it was ignored on target and mixed into 'oflags' in the simulator. * Simplified io.c a bit by defining a dummy O_BINARY for OSes which don't have that.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12179 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/viewer.c')
| -rw-r--r-- | apps/plugins/viewer.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index a8ef5eb..8590283 100644 --- a/apps/plugins/viewer.c +++ b/apps/plugins/viewer.c @@ -1074,7 +1074,7 @@ static void viewer_load_settings(void) /* same name as global, but not the same if (i < data->bookmarked_files_count) { /* it is in the list, write everything back in the correct order, and reload the file correctly */ - settings_fd = rb->creat(BOOKMARKS_FILE, O_WRONLY); + settings_fd = rb->creat(BOOKMARKS_FILE); if (settings_fd >=0 ) { if (data->bookmarked_files_count > MAX_BOOKMARKED_FILES) @@ -1092,7 +1092,7 @@ static void viewer_load_settings(void) /* same name as global, but not the same } else /* not in list, write the list to the file */ { - settings_fd = rb->creat(BOOKMARKS_FILE, O_WRONLY); + settings_fd = rb->creat(BOOKMARKS_FILE); if (settings_fd >=0 ) { if (++(data->bookmarked_files_count) > MAX_BOOKMARKED_FILES) @@ -1120,7 +1120,7 @@ static void viewer_load_settings(void) /* same name as global, but not the same static void viewer_save_settings(void)/* same name as global, but not the same file.. */ { int settings_fd; - settings_fd = rb->creat(SETTINGS_FILE, O_WRONLY); /* create the settings file */ + settings_fd = rb->creat(SETTINGS_FILE); /* create the settings file */ rb->write (settings_fd, &prefs, sizeof(struct preferences)); rb->close(settings_fd); |