]> granicus.if.org Git - neomutt/commitdiff
Fixes missing semi-colon compilation issue (#433)
authorguyzmo <guyzmo+github+pub@m0g.net>
Sat, 25 Feb 2017 11:47:14 +0000 (12:47 +0100)
committerRichard Russon <rich@flatcap.org>
Sat, 25 Feb 2017 11:47:14 +0000 (11:47 +0000)
Signed-off-by: Guyzmo <guyzmo+github+pub@m0g.net>
getdomain.c

index 97fd9f429179eb1a452d3f77071b9a70df4e9ea4..e93954709cdd99e475c4e2c16d6cb0405aacf07e 100644 (file)
@@ -67,7 +67,7 @@ int getdnsdomainname (char *d, size_t len)
 
 #else /* !HAVE_GETADDRINFO_A */
 
-  getaddrinfo(node, NULL, &hints, &h)
+  getaddrinfo(node, NULL, &hints, &h);
 
 #endif