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 /firmware/export | |
parent | f50bbce43867ddc285823c0d2c65bc42b1d8d161 (diff) |
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 'firmware/export')
-rw-r--r-- | firmware/export/debug.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/firmware/export/debug.h b/firmware/export/debug.h index f8aa7d4113..0506ff1e42 100644 --- a/firmware/export/debug.h +++ b/firmware/export/debug.h @@ -20,8 +20,8 @@ #define DEBUG_H extern void debug_init(void); -extern void debugf(char* fmt,...); -extern void ldebugf(char* file, int line, char *fmt, ...); +extern void debugf(const char* fmt,...); +extern void ldebugf(const char* file, int line, const char *fmt, ...); #ifdef __GNUC__ |