summaryrefslogtreecommitdiff
path: root/apps/plugins/viewer.c
diff options
context:
space:
mode:
authorBjörn Stenberg <bjorn@haxx.se>2009-01-07 09:53:46 +0000
committerBjörn Stenberg <bjorn@haxx.se>2009-01-07 09:53:46 +0000
commita36cdf5b37994a301d4fdeab123ee1569a34cf46 (patch)
tree5794a1f13f93e3d7190572e07709aa1a11e9e892 /apps/plugins/viewer.c
parentf9329e4c9273f1b82aa5dbb36f243546ce55036d (diff)
downloadrockbox-a36cdf5b37994a301d4fdeab123ee1569a34cf46.tar.gz
rockbox-a36cdf5b37994a301d4fdeab123ee1569a34cf46.zip
Removed the sim_ prefix from the plugin api.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19704 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/viewer.c')
-rw-r--r--apps/plugins/viewer.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c
index 9a4b25bffd..fd460e50e0 100644
--- a/apps/plugins/viewer.c
+++ b/apps/plugins/viewer.c
@@ -1310,7 +1310,7 @@ static void viewer_save_settings(void)/* same name as global, but not the same f
1310 b.top_ptr_pos = 0; /* this is only kept for legassy reasons */ 1310 b.top_ptr_pos = 0; /* this is only kept for legassy reasons */
1311 rb->memset(&b.filename[0],0,MAX_PATH); 1311 rb->memset(&b.filename[0],0,MAX_PATH);
1312 rb->strcpy(b.filename,file_name); 1312 rb->strcpy(b.filename,file_name);
1313 rb->PREFIX(lseek)(settings_fd,sizeof(signed int),SEEK_SET); 1313 rb->lseek(settings_fd,sizeof(signed int),SEEK_SET);
1314 rb->write (settings_fd, &b, sizeof(struct bookmarked_file_info)); 1314 rb->write (settings_fd, &b, sizeof(struct bookmarked_file_info));
1315 rb->close(settings_fd); 1315 rb->close(settings_fd);
1316 } 1316 }