]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
Make Win32 stub of vshAskReedit non-static
authorDaniel P. Berrange <berrange@redhat.com>
Mon, 20 Aug 2012 12:29:14 +0000 (13:29 +0100)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 20 Aug 2012 12:29:14 +0000 (13:29 +0100)
The main impl of vshAskReedit is non-static, so the Win32
stub must be the same

tools/virsh.c

index ecb27df4e720310102c37d733521d64c47a8d4ff..8e644b95bb437e696f3a34670497423a761c8d07 100644 (file)
@@ -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 "