diff options
| author | Linus Nielsen Feltzing <linus@haxx.se> | 2004-04-20 10:15:39 +0000 |
|---|---|---|
| committer | Linus Nielsen Feltzing <linus@haxx.se> | 2004-04-20 10:15:39 +0000 |
| commit | 18d5d30c1c7aa62adb376025be60da792b8db2ca (patch) | |
| tree | dee54ddb6417ed051ea48bc2e8ce2178bd35ca0a /apps/plugin.h | |
| parent | 6afe39370699a8e01374e464decb070fdec6f7a6 (diff) | |
| download | rockbox-18d5d30c1c7aa62adb376025be60da792b8db2ca.zip rockbox-18d5d30c1c7aa62adb376025be60da792b8db2ca.tar.gz rockbox-18d5d30c1c7aa62adb376025be60da792b8db2ca.tar.bz2 rockbox-18d5d30c1c7aa62adb376025be60da792b8db2ca.tar.xz | |
Better POSIX compatibility for mkdir(), rmdir() and opendir()
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4521 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.h')
| -rw-r--r-- | apps/plugin.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.h b/apps/plugin.h index 9728dc4..e017247 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -150,7 +150,7 @@ struct plugin_api { int (*read_line)(int fd, char* buffer, int buffer_size); /* dir */ - DIR* (*opendir)(char* name); + DIR* (*opendir)(const char* name); int (*closedir)(DIR* dir); struct dirent* (*readdir)(DIR* dir); |