diff --git a/configure b/configure index b29cdd32df..d19e64532f 100755 --- a/configure +++ b/configure @@ -1822,7 +1822,8 @@ if test "$vde" != "no" ; then int main(void) { struct vde_open_args a = {0, 0, 0}; - vde_open("", "", &a); + char s[] = ""; + vde_open(s, s, &a); return 0; } EOF