add missing ;
diff --git a/networking/ifupdown.c b/networking/ifupdown.c
index ff6e58a..95d78ea 100644
--- a/networking/ifupdown.c
+++ b/networking/ifupdown.c
@@ -573,7 +573,7 @@
 	} else if (execable("/sbin/dhcpcd")) {
 		result = execute("dhcpcd -k %iface%", ifd, exec);
 	}
-	static_down(ifd, exec)
+	static_down(ifd, exec);
 	return (result || bootp_down(ifd, exec));
 }