Make suffix_mult structures const. Thanks to Vladimir N. Oleynik.
[oweals/busybox.git] / nc.c
diff --git a/nc.c b/nc.c
index a2be8ec46dbb87a48eb4898912d85f82c6daa6b6..682da82bf02037927dee97abde283abe9ea5a43a 100644 (file)
--- a/nc.c
+++ b/nc.c
@@ -25,6 +25,7 @@
     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
 
 */
+
 #include "busybox.h"
 #include <stdio.h>
 #include <stdlib.h>
@@ -58,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;