From 9d62472fc45f34ad1be36b182398a6c6c0854cd5 Mon Sep 17 00:00:00 2001 From: Eric Blake Date: Mon, 29 Jul 2013 09:58:19 -0600 Subject: [PATCH] build: fix another virdbus issue on mingw Depending on the set of mingw packages installed, it is possible that other .c files hit the mingw header pollution from the virdbus.h file. In file included from ../../src/rpc/virnetserver.c:39:0: ../../src/util/virdbus.h:41:35: error: expected ';', ',' or ')' before 'struct' const char *interface, ^ * src/util/virdbus.h (virDBusCallMethod): Match .c file change. Signed-off-by: Eric Blake --- src/util/virdbus.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/util/virdbus.h b/src/util/virdbus.h index c04fd104fb..39de479ff9 100644 --- a/src/util/virdbus.h +++ b/src/util/virdbus.h @@ -38,7 +38,7 @@ int virDBusCallMethod(DBusConnection *conn, DBusMessage **reply, const char *destination, const char *path, - const char *interface, + const char *iface, const char *member, const char *types, ...); int virDBusMessageRead(DBusMessage *msg, -- 2.47.2