diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-08-18 19:59:06 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-08-18 19:59:06 +0000 |
| commit | 2f20b3e78426600e0e8008eab6663fc4f0547f57 (patch) | |
| tree | 1c8ccec8bf1d65c8890e41782914f8a4110a385c /apps/plugin.h | |
| parent | f50bbce43867ddc285823c0d2c65bc42b1d8d161 (diff) | |
| download | rockbox-2f20b3e78426600e0e8008eab6663fc4f0547f57.zip rockbox-2f20b3e78426600e0e8008eab6663fc4f0547f57.tar.gz rockbox-2f20b3e78426600e0e8008eab6663fc4f0547f57.tar.bz2 rockbox-2f20b3e78426600e0e8008eab6663fc4f0547f57.tar.xz | |
Const policed pointer arguments to functions, part 4
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@5001 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 e8fb25e..43f8b89 100644 --- a/apps/plugin.h +++ b/apps/plugin.h @@ -261,7 +261,7 @@ struct plugin_api { #endif void (*plugin_tsr)(void (*exit_callback)(void)); #if defined(DEBUG) || defined(SIMULATOR) - void (*debugf)(char *fmt, ...); + void (*debugf)(const char *fmt, ...); #endif struct user_settings* global_settings; void (*backlight_set_timeout)(int index); |