diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-16 10:43:22 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2006-04-16 10:43:22 +0200 |
commit | 53819a9aff27919128acfa2f464f8f090edd0e07 (patch) | |
tree | 368b1b5ae1c0947e68961e01bbbfad3b6c5813e2 /tools.h | |
parent | 1354141eabf62a28f5c7ec6c87a48019049c795f (diff) | |
download | vdr-53819a9aff27919128acfa2f464f8f090edd0e07.tar.gz vdr-53819a9aff27919128acfa2f464f8f090edd0e07.tar.bz2 |
Added format check to syslog_with_tid()
Diffstat (limited to 'tools.h')
-rw-r--r-- | tools.h | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ * See the main source file 'vdr.c' for copyright information and * how to reach the author. * - * $Id: tools.h 1.92 2006/02/04 14:21:08 kls Exp $ + * $Id: tools.h 1.93 2006/04/16 10:40:45 kls Exp $ */ #ifndef __TOOLS_H @@ -52,7 +52,7 @@ template<class T> inline int sgn(T a) { return a < 0 ? -1 : a > 0 ? 1 : 0; } template<class T> inline void swap(T &a, T &b) { T t = a; a = b; b = t; } #endif -void syslog_with_tid(int priority, const char *format, ...); +void syslog_with_tid(int priority, const char *format, ...) __attribute__ ((format (printf, 2, 3))); #define BCDCHARTOINT(x) (10 * ((x & 0xF0) >> 4) + (x & 0xF)) int BCD2INT(int x); |