diff options
author | Klaus Schmidinger <vdr@tvdr.de> | 2005-10-09 11:14:14 +0200 |
---|---|---|
committer | Klaus Schmidinger <vdr@tvdr.de> | 2005-10-09 11:14:14 +0200 |
commit | 325163c0ef02c023a3fa270f93008eb771e5d50c (patch) | |
tree | a6b50a6614a17d53bc27f8792808048d225bbea5 /thread.h | |
parent | 22ee421be95e973121675849767ea76d9932a757 (diff) | |
download | vdr-325163c0ef02c023a3fa270f93008eb771e5d50c.tar.gz vdr-325163c0ef02c023a3fa270f93008eb771e5d50c.tar.bz2 |
Added '__attribute__' to functions that use printf() like parameters
Diffstat (limited to 'thread.h')
-rw-r--r-- | thread.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: thread.h 1.30 2005/08/14 11:21:48 kls Exp $ + * $Id: thread.h 1.31 2005/10/09 11:12:32 kls Exp $ */ #ifndef __THREAD_H @@ -106,7 +106,7 @@ public: ///< the thread starts and stops. The Start() function must be called ///< to actually start the thread. virtual ~cThread(); - void SetDescription(const char *Description, ...); + void SetDescription(const char *Description, ...) __attribute__ ((format (printf, 2, 3))); bool Start(void); ///< Actually starts the thread. bool Active(void); |