summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcoen Hirschberg <marcoen@gmail.com>2007-11-19 21:14:42 +0000
committerMarcoen Hirschberg <marcoen@gmail.com>2007-11-19 21:14:42 +0000
commit852cf58f365f75c05ef7a785f6c0af0f8dca7b1f (patch)
treefdd0ffe01bd1e46fa53e9ef5fdd71b314eee052f
parent2b30bf9eacf76eb59a6b20dca20f424fa7a07e22 (diff)
access memcpy through the plugin api..
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15702 a1c6a512-1295-4272-9138-f99709370657
-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 a838685df5..a517e93873 100644
--- a/apps/plugins/viewer.c
+++ b/apps/plugins/viewer.c
@@ -1096,7 +1096,7 @@ static void viewer_load_settings(void) /* same name as global, but not the same
rb->close(settings_fd);
}
- memcpy(&old_prefs, &prefs, sizeof(struct preferences));
+ rb->memcpy(&old_prefs, &prefs, sizeof(struct preferences));
data = (struct bookmark_file_data*)buffer; /* grab the text buffer */
data->bookmarked_files_count = 0;