Make suffix_mult structures const. Thanks to Vladimir N. Oleynik.
[oweals/busybox.git] / nc.c
diff --git a/nc.c b/nc.c
index 7de4015ac24d50ee06c101a8a566dffe3d297862..682da82bf02037927dee97abde283abe9ea5a43a 100644 (file)
--- a/nc.c
+++ b/nc.c
@@ -59,7 +59,7 @@ int nc_main(int argc, char **argv)
                perror_msg_and_die("socket");
 
        if ((hostinfo = gethostbyname(*argv)) == NULL)
-               error_msg_and_die("cannot resolve %s\n", *argv);
+               error_msg_and_die("cannot resolve %s", *argv);
 
        address.sin_family = AF_INET;
        address.sin_addr = *(struct in_addr *) *hostinfo->h_addr_list;