diff options
| author | Steve Bavin <pondlife@pondlife.me> | 2008-05-12 17:52:50 +0000 |
|---|---|---|
| committer | Steve Bavin <pondlife@pondlife.me> | 2008-05-12 17:52:50 +0000 |
| commit | ad95df2cabdee6f53ae16f1c24774bfc47add36f (patch) | |
| tree | bb8851e30b36116a1e3c648114a6d40f38f0f29c /apps/filetypes.c | |
| parent | 8ea9b94cd95e39f96d3f5cac002ada826a7df5b0 (diff) | |
| download | rockbox-ad95df2cabdee6f53ae16f1c24774bfc47add36f.zip rockbox-ad95df2cabdee6f53ae16f1c24774bfc47add36f.tar.gz rockbox-ad95df2cabdee6f53ae16f1c24774bfc47add36f.tar.bz2 rockbox-ad95df2cabdee6f53ae16f1c24774bfc47add36f.tar.xz | |
Const police raid.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17474 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/filetypes.c')
| -rw-r--r-- | apps/filetypes.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/filetypes.c b/apps/filetypes.c index 722456b..ead2295 100644 --- a/apps/filetypes.c +++ b/apps/filetypes.c @@ -518,5 +518,5 @@ int filetype_load_plugin(const char* plugin, char* file) return PLUGIN_ERROR; snprintf(plugin_name, MAX_PATH, "%s/%s.%s", PLUGIN_DIR, filetypes[i].plugin, ROCK_EXTENSION); - return plugin_load(plugin_name,file); + return plugin_load(plugin_name, file); } |