ref: 9da9ea4b912941be1609ecf53a05d2d1186fbe7c
parent: 73a37f9c2f6ba00232bd4696e42316fdca39608c
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;
}
--
⑨