diff options
| author | Marcoen Hirschberg <marcoen@gmail.com> | 2007-11-19 21:14:42 +0000 |
|---|---|---|
| committer | Marcoen Hirschberg <marcoen@gmail.com> | 2007-11-19 21:14:42 +0000 |
| commit | 852cf58f365f75c05ef7a785f6c0af0f8dca7b1f (patch) | |
| tree | fdd0ffe01bd1e46fa53e9ef5fdd71b314eee052f /apps/plugins | |
| parent | 2b30bf9eacf76eb59a6b20dca20f424fa7a07e22 (diff) | |
| download | rockbox-852cf58f365f75c05ef7a785f6c0af0f8dca7b1f.zip rockbox-852cf58f365f75c05ef7a785f6c0af0f8dca7b1f.tar.gz rockbox-852cf58f365f75c05ef7a785f6c0af0f8dca7b1f.tar.bz2 rockbox-852cf58f365f75c05ef7a785f6c0af0f8dca7b1f.tar.xz | |
access memcpy through the plugin api..
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@15702 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/viewer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/viewer.c b/apps/plugins/viewer.c index a838685..a517e93 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; |