Browse Source

Remove newlines - they were intentionally excluded

Signed-off-by: Graham MacDonald <grahamamacdonald@gmail.com>
Graham MacDonald 7 years ago
parent
commit
d52274cf00
2 changed files with 4 additions and 4 deletions
  1. 3 3
      sys/src/9/boot/boot.c
  2. 1 1
      sys/src/9/boot/bootip.c

+ 3 - 3
sys/src/9/boot/boot.c

@@ -149,7 +149,7 @@ boot(int argc, char *argv[])
 	 */
 	authentication(cpuflag);
 
-	print("connect...\n");
+	print("connect...");
 
 	/*
 	 *  connect to the root file system
@@ -161,8 +161,8 @@ boot(int argc, char *argv[])
 		if(cfs)
 			fd = (*cfs)(fd);
 	}
-	
-	print("version...\n");
+
+	print("version...");
 	buf[0] = '\0';
 	n = fversion(fd, 0, buf, sizeof buf);
 	if(n < 0)

+ 1 - 1
sys/src/9/boot/bootip.c

@@ -39,7 +39,7 @@ configip(int bargc, char **bargv, int needfs)
 	memmove(arg, bargv, bargc * sizeof(char*));
 	arg[bargc] = 0;
 
-	print("ipconfig...\n");
+	print("ipconfig...");
 	argc = bargc;
 	argv = arg;
 	strcpy(mpoint, "/net");