diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2004-08-16 23:37:23 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2004-08-16 23:37:23 +0000 |
| commit | c76c568b351d37c485f78cd185b2d52d54fe7a34 (patch) | |
| tree | ca65a23113fb82941855e44b5dcc3a0896885882 /firmware/export/panic.h | |
| parent | 8b131ac1fb04cb96094044dca7423a8d1da7f690 (diff) | |
| download | rockbox-c76c568b351d37c485f78cd185b2d52d54fe7a34.zip rockbox-c76c568b351d37c485f78cd185b2d52d54fe7a34.tar.gz rockbox-c76c568b351d37c485f78cd185b2d52d54fe7a34.tar.bz2 rockbox-c76c568b351d37c485f78cd185b2d52d54fe7a34.tar.xz | |
Const policed pointer arguments to functions, part 1
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@4995 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/export/panic.h')
| -rw-r--r-- | firmware/export/panic.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/firmware/export/panic.h b/firmware/export/panic.h index 585f827..fd63687 100644 --- a/firmware/export/panic.h +++ b/firmware/export/panic.h @@ -20,6 +20,6 @@ #ifndef __PANIC_H__ #define __PANIC_H__ -void panicf( char *fmt, ... ); +void panicf( const char *fmt, ... ); #endif /* __PANIC_H__ */ |