[error message]
CC libvirtd-dispatch.o
dispatch.c: In function 'remoteDispatchFormatError':
dispatch.c:83: error: 'va_list' undeclared (first use in this function)
dispatch.c:83: error: (Each undeclared identifier is reported only once
dispatch.c:83: error: for each function it appears in.)
dispatch.c:83: error: expected ';' before 'args'
cc1: warnings being treated as errors
dispatch.c:87: error: implicit declaration of function 'va_start'
[-Wimplicit-function-declaration]
dispatch.c:87: error: nested extern declaration of 'va_start' [-Wnested-externs]
dispatch.c:87: error: 'args' undeclared (first use in this function)
dispatch.c:88: error: implicit declaration of function 'vsnprintf'
[-Wimplicit-function-declaration]
dispatch.c:89: error: implicit declaration of function 'va_end'
[-Wimplicit-function-declaration]
dispatch.c:89: error: nested extern declaration of 'va_end' [-Wnested-externs]
* daemon/dispatch.c: include stdio.h and stdarg.h
---
daemon/dispatch.c | 3 +++
1 files changed, 3 insertions(+), 0 deletions(-)
diff --git a/daemon/dispatch.c b/daemon/dispatch.c
index 8f55eaa..966db71 100644
--- a/daemon/dispatch.c
+++ b/daemon/dispatch.c
@@ -23,6 +23,9 @@
#include <config.h>
+#include <stdio.h>
+#include <stdarg.h>
+
#include "dispatch.h"
#include "remote.h"
--
1.6.6.1