diff options
| author | Jonathan Gordon <rockbox@jdgordon.info> | 2006-10-31 11:30:37 +0000 |
|---|---|---|
| committer | Jonathan Gordon <rockbox@jdgordon.info> | 2006-10-31 11:30:37 +0000 |
| commit | 0218a155b0d3963c7c654412e608377afdb9661a (patch) | |
| tree | 159e5180d73a1b5ab0ec03ef2d7759f5c12174f7 /apps/plugin.c | |
| parent | 29e259a29190a5ec67dbffc85389a1cb71a9fe26 (diff) | |
| download | rockbox-0218a155b0d3963c7c654412e608377afdb9661a.zip rockbox-0218a155b0d3963c7c654412e608377afdb9661a.tar.gz rockbox-0218a155b0d3963c7c654412e608377afdb9661a.tar.bz2 rockbox-0218a155b0d3963c7c654412e608377afdb9661a.tar.xz | |
put the parameter name in the function prototype
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11406 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugin.c')
| -rw-r--r-- | apps/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugin.c b/apps/plugin.c index 518fdef..25f1865 100644 --- a/apps/plugin.c +++ b/apps/plugin.c @@ -88,7 +88,7 @@ extern unsigned char pluginbuf[]; /* for actual plugins only, not for codecs */ static bool plugin_loaded = false; static int plugin_size = 0; -static bool (*pfn_tsr_exit)(bool) = NULL; /* TSR exit callback */ +static bool (*pfn_tsr_exit)(bool reenter) = NULL; /* TSR exit callback */ static char current_plugin[MAX_PATH]; static const struct plugin_api rockbox_api = { |