summaryrefslogtreecommitdiff
path: root/tools.h
diff options
context:
space:
mode:
authorKlaus Schmidinger <vdr@tvdr.de>2012-05-08 11:23:56 +0200
committerKlaus Schmidinger <vdr@tvdr.de>2012-05-08 11:23:56 +0200
commit06b8fe94ef8e07dde1ff7cc33d9d940448fb1109 (patch)
tree789fe78776241055f2adc322c4a2ce693ae7ff59 /tools.h
parent4f7523a3a29297079aac404f4f5021dec6ddbe97 (diff)
downloadvdr-06b8fe94ef8e07dde1ff7cc33d9d940448fb1109.tar.gz
vdr-06b8fe94ef8e07dde1ff7cc33d9d940448fb1109.tar.bz2
Renamed the function cString::sprintf(const char *fmt, va_list &ap) to vsprintf()
Diffstat (limited to 'tools.h')
-rw-r--r--tools.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools.h b/tools.h
index 2cba42cf..ad54c879 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 2.17 2012/04/01 11:36:10 kls Exp $
+ * $Id: tools.h 2.18 2012/05/08 11:11:33 kls Exp $
*/
#ifndef __TOOLS_H
@@ -177,7 +177,7 @@ public:
cString &operator=(const char *String);
cString &Truncate(int Index); ///< Truncate the string at the given Index (if Index is < 0 it is counted from the end of the string).
static cString sprintf(const char *fmt, ...) __attribute__ ((format (printf, 1, 2)));
- static cString sprintf(const char *fmt, va_list &ap);
+ static cString vsprintf(const char *fmt, va_list &ap);
};
ssize_t safe_read(int filedes, void *buffer, size_t size);