diff options
author | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-04-21 23:15:44 +0000 |
---|---|---|
committer | Darren Salt <linux@youmustbejoking.demon.co.uk> | 2006-04-21 23:15:44 +0000 |
commit | 65d46d7e0123cf42b5c98f633bd41c90acaa180d (patch) | |
tree | 0912efb8d0496428f015fdc8de81db135e44e65d /src/xine-utils | |
parent | c707fe990cb23300de76b7a5728a543105283ddb (diff) | |
download | xine-lib-65d46d7e0123cf42b5c98f633bd41c90acaa180d.tar.gz xine-lib-65d46d7e0123cf42b5c98f633bd41c90acaa180d.tar.bz2 |
Add printf format attributes.
CVS patchset: 7977
CVS date: 2006/04/21 23:15:44
Diffstat (limited to 'src/xine-utils')
-rw-r--r-- | src/xine-utils/xine_check.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/xine-utils/xine_check.c b/src/xine-utils/xine_check.c index 2479a9887..a27052d1a 100644 --- a/src/xine-utils/xine_check.c +++ b/src/xine-utils/xine_check.c @@ -72,7 +72,10 @@ #endif /* !__linux__ */ -static void __attribute__ ((format (printf, 3, 4))) +static void +#ifdef __GNUC__ +__attribute__((format (printf, 3, 4))) +#endif set_hc_result(xine_health_check_t* hc, int state, const char *format, ...) { |