shithub: riscv

Download patch

ref: 95bb4668580aad77a4b2073b59ae9f9eb0855766
parent: 52927a5c6aa6a03aaffba0fd1c684bc8f9d1c12d
author: cinap_lenrek <cinap_lenrek@felloff.net>
date: Sun Feb 9 08:00:49 EST 2025

aux/olefs: don't put newline in werrstr()

--- a/sys/src/cmd/aux/olefs.c
+++ b/sys/src/cmd/aux/olefs.c
@@ -114,7 +114,7 @@
 	int n;
 
 	if(block < 0 || block >= f->nblock) {
-		werrstr("attempt to read %x/%lux\n", block, f->nblock);
+		werrstr("attempt to read %x/%lux", block, f->nblock);
 		return -1;
 	}
 
--