From 53819a9aff27919128acfa2f464f8f090edd0e07 Mon Sep 17 00:00:00 2001 From: Klaus Schmidinger Date: Sun, 16 Apr 2006 10:43:22 +0200 Subject: Added format check to syslog_with_tid() --- HISTORY | 1 + tools.h | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/HISTORY b/HISTORY index 5862d68a..e712e37d 100644 --- a/HISTORY +++ b/HISTORY @@ -4599,3 +4599,4 @@ Video Disk Recorder Revision History directly into the "Edit timer" menu in order to allow the user to make further changes to timer parameters before the actual recording starts (inspired by Christian Wieninger's "epgsearch" plugin). +- Added format check to syslog_with_tid(). diff --git a/tools.h b/tools.h index 1fbe8e7c..0d794140 100644 --- a/tools.h +++ b/tools.h @@ -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 inline int sgn(T a) { return a < 0 ? -1 : a > 0 ? 1 : 0; } template 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); -- cgit v1.2.3