diff options
author | Michael Biebl <biebl@debian.org> | 2014-03-17 15:01:26 +0100 |
---|---|---|
committer | Michael Biebl <biebl@debian.org> | 2014-03-17 15:01:26 +0100 |
commit | 29b51b47d541217c16564ac1f8ecb4a6067c4dad (patch) | |
tree | 76016094935576363adcba5658c52ac33b78f5e8 /runtime/stringbuf.h | |
parent | 29867b5cc18d25191fbbdcc4af4f79cc3a4da43e (diff) | |
download | rsyslog-29b51b47d541217c16564ac1f8ecb4a6067c4dad.tar.gz |
Imported Upstream version 7.6.2upstream/7.6.2
Diffstat (limited to 'runtime/stringbuf.h')
-rw-r--r-- | runtime/stringbuf.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/runtime/stringbuf.h b/runtime/stringbuf.h index 2df48ab..9de7ce3 100644 --- a/runtime/stringbuf.h +++ b/runtime/stringbuf.h @@ -178,7 +178,7 @@ rsRetVal rsCStrAppendStrWithLen(cstr_t *pThis, uchar* psz, size_t iStrLen); * * \param fmt pointer to the format string (see man 3 printf for details). Must not be NULL. */ -rsRetVal rsCStrAppendStrf(cstr_t *pThis, uchar *fmt, ...); +rsRetVal rsCStrAppendStrf(cstr_t *pThis, char *fmt, ...) __attribute__((format(printf,2, 3))); /** * Append an integer to the string. No special formatting is |