diff options
| author | Jens Arnold <amiconn@rockbox.org> | 2007-03-17 09:02:53 +0000 |
|---|---|---|
| committer | Jens Arnold <amiconn@rockbox.org> | 2007-03-17 09:02:53 +0000 |
| commit | 79c8a8cbbec5f1f0f7766d2b72ce12d51b3b849d (patch) | |
| tree | d5c3fbab0ec01d2b0ca7d5278f15cf45f79b0763 /apps/gui | |
| parent | 1329d7d3fde426a290c03ee92b1c701dde49851c (diff) | |
| download | rockbox-79c8a8cbbec5f1f0f7766d2b72ce12d51b3b849d.zip rockbox-79c8a8cbbec5f1f0f7766d2b72ce12d51b3b849d.tar.gz rockbox-79c8a8cbbec5f1f0f7766d2b72ce12d51b3b849d.tar.bz2 rockbox-79c8a8cbbec5f1f0f7766d2b72ce12d51b3b849d.tar.xz | |
Let GCC check arguments of some more printf-style functions, also for plugins and codecs.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@12815 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/gui')
| -rw-r--r-- | apps/gui/splash.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/apps/gui/splash.h b/apps/gui/splash.h index 589be95..206674d 100644 --- a/apps/gui/splash.h +++ b/apps/gui/splash.h @@ -19,6 +19,7 @@ #ifndef _GUI_SPLASH_H_ #define _GUI_SPLASH_H_ +#include <_ansi.h> #include "screen_access.h" /* @@ -28,13 +29,14 @@ * - fmt : what to say *printf style */ extern void gui_splash(struct screen * screen, int ticks, - const char *fmt, ...); + const char *fmt, ...) ATTRIBUTE_PRINTF(3, 4); /* * Puts a splash message centered on all the screens for a given period * - ticks : how long the splash is displayed (in rb ticks) * - fmt : what to say *printf style */ -extern void gui_syncsplash(int ticks, const unsigned char *fmt, ...); +extern void gui_syncsplash(int ticks, const char *fmt, ...) + ATTRIBUTE_PRINTF(2, 3); #endif /* _GUI_ICON_H_ */ |