Apply a patch from Evin Robertson -- new pivot_root applet.
[oweals/busybox.git] / deallocvt.c
index fad7a2bb211567a80f83e88cbe624af550516610..b51fbaef442607dbdeb04160c3d07163e8907acf 100644 (file)
@@ -31,9 +31,9 @@ int deallocvt_main(int argc, char *argv[])
                for (i = 1; i < argc; i++) {
                        num = atoi(argv[i]);
                        if (num == 0)
-                               error_msg("0: illegal VT number\n");
+                               error_msg("0: illegal VT number");
                        else if (num == 1)
-                               error_msg("VT 1 cannot be deallocated\n");
+                               error_msg("VT 1 cannot be deallocated");
                        else if (ioctl(fd, VT_DISALLOCATE, num))
                                perror_msg_and_die("VT_DISALLOCATE");
                }