git: 9front

Download patch

ref: 5d97bbe236e4f46b535a4c15a90b81ee1d5cda9e
parent: 4849aeb11a8c70819b236faceb4424557f35fafe
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Mon Dec 12 15:48:07 EST 2022

cwfs: add missing \n in error print

--- a/sys/src/cmd/cwfs/net.c
+++ b/sys/src/cmd/cwfs/net.c
@@ -99,7 +99,7 @@
 		if(net->dialstr == nil)
 			continue;
 		if((net->annfd = announce(net->dialstr, net->anndir)) < 0){
-			fprint(2, "can't announce %s: %r", net->dialstr);
+			fprint(2, "can't announce %s: %r\n", net->dialstr);
 			net->dialstr = nil;
 			continue;
 		}
--