diff options
| author | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-01-30 23:27:44 +0000 |
|---|---|---|
| committer | Jörg Hohensohn <hohensoh@rockbox.org> | 2004-01-30 23:27:44 +0000 |
| commit | 73681ff4ef9d31dce166497e441487523545f19f (patch) | |
| tree | 270ac4f401ca0d4be394b8ed6c74f2961fda418f /apps/plugin.h | |
| parent | 25a1add8cf8486b2297f2e62aaf1e0d4adca013e (diff) | |
| download | rockbox-73681ff4ef9d31dce166497e441487523545f19f.zip rockbox-73681ff4ef9d31dce166497e441487523545f19f.tar.gz rockbox-73681ff4ef9d31dce166497e441487523545f19f.tar.bz2 rockbox-73681ff4ef9d31dce166497e441487523545f19f.tar.xz | |
inconsistent argument type for backlight_set_timeout() fixed
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4287 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 be08091..2bcdffb 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -203,7 +203,7 @@ struct plugin_api { void (*bitswap)(unsigned char *data, int length); #endif struct user_settings* global_settings; - void (*backlight_set_timeout)(unsigned int index); + void (*backlight_set_timeout)(int index); }; /* defined by the plugin loader (plugin.c) */ |