From ee7b4e551e8bc92fd92f37bdc2aed9a86822ba7e Mon Sep 17 00:00:00 2001 From: "Daniel P. Berrange" Date: Mon, 20 Aug 2012 13:29:14 +0100 Subject: [PATCH] Make Win32 stub of vshAskReedit non-static The main impl of vshAskReedit is non-static, so the Win32 stub must be the same --- tools/virsh.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/virsh.c b/tools/virsh.c index ecb27df4e7..8e644b95bb 100644 --- a/tools/virsh.c +++ b/tools/virsh.c @@ -343,7 +343,7 @@ vshAskReedit(vshControl *ctl, const char *msg) return c; } #else /* WIN32 */ -static int +int vshAskReedit(vshControl *ctl, const char *msg ATTRIBUTE_UNUSED) { vshDebug(ctl, VSH_ERR_WARNING, "%s", _("This function is not "