remove extra newline from perror() calls

perror error adds a newline, so don't split error message
across two lines.
diff --git a/ip/ipneigh.c b/ip/ipneigh.c
index db684f5..b40de5b 100644
--- a/ip/ipneigh.c
+++ b/ip/ipneigh.c
@@ -88,7 +88,7 @@
 static int flush_update(void)
 {
 	if (rtnl_send(&rth, filter.flushb, filter.flushp) < 0) {
-		perror("Failed to send flush request\n");
+		perror("Failed to send flush request");
 		return -1;
 	}
 	filter.flushp = 0;