summaryrefslogtreecommitdiff
path: root/apps/plugin.c
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2010-12-06 22:26:31 +0000
committerThomas Martitz <kugel@rockbox.org>2010-12-06 22:26:31 +0000
commit2c2416094f426972c9e2e96d25058311bbe82f97 (patch)
tree449b4e12e01c3c5c4afa2ae6a8cd396df82b5a38 /apps/plugin.c
parentc35b43b0f54bd607d38908544446caaa02f148a3 (diff)
downloadrockbox-2c2416094f426972c9e2e96d25058311bbe82f97.tar.gz
rockbox-2c2416094f426972c9e2e96d25058311bbe82f97.zip
Get rid of get_user_file_path and do the path handling in wrappers for open() and friends.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@28752 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
-rw-r--r--apps/plugin.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugin.c b/apps/plugin.c
index 316c7c6b5d..f28593ec4e 100644
--- a/apps/plugin.c
+++ b/apps/plugin.c
@@ -314,11 +314,11 @@ static const struct plugin_api rockbox_api = {
314#ifdef HAVE_PLUGIN_CHECK_OPEN_CLOSE 314#ifdef HAVE_PLUGIN_CHECK_OPEN_CLOSE
315 (creat_func)creat_wrapper, 315 (creat_func)creat_wrapper,
316#else 316#else
317 (creat_func)PREFIX(creat), 317 (creat_func)creat,
318#endif 318#endif
319 (write_func)PREFIX(write), 319 (write_func)PREFIX(write),
320 PREFIX(remove), 320 remove,
321 PREFIX(rename), 321 rename,
322 PREFIX(ftruncate), 322 PREFIX(ftruncate),
323 PREFIX(filesize), 323 PREFIX(filesize),
324 fdprintf, 324 fdprintf,