aboutsummaryrefslogtreecommitdiffstats
path: root/report.c
diff options
context:
space:
mode:
Diffstat (limited to 'report.c')
-rw-r--r--report.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/report.c b/report.c
index 11be80d9..d201c740 100644
--- a/report.c
+++ b/report.c
@@ -15,6 +15,7 @@
#endif
#include <stdio.h>
#include <errno.h>
+#include <string.h>
#if defined(HAVE_SYSLOG)
#include <syslog.h>
#endif
@@ -104,7 +105,7 @@ report (FILE *errfp, message, va_alist)
if (partial_message_size_used != 0)
{
partial_message_size_used = 0;
- report (errfp, 0, GT_("%s (log message incomplete)"), partial_message);
+ report (errfp, GT_("%s (log message incomplete)"), partial_message);
}
#if defined(HAVE_SYSLOG)