From mboxrd@z Thu Jan 1 00:00:00 1970 X-Spam-Checker-Version: SpamAssassin 3.4.4 (2020-01-24) on inbox.vuxu.org X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=ham autolearn_force=no version=3.4.4 Received: (qmail 13231 invoked from network); 9 Oct 2021 14:52:52 -0000 Received: from 4ess.inri.net (216.126.196.42) by inbox.vuxu.org with ESMTPUTF8; 9 Oct 2021 14:52:52 -0000 Received: from mimir.eigenstate.org ([206.124.132.107]) by 4ess; Sat Oct 9 10:48:28 -0400 2021 Received: from abbatoir.myfiosgateway.com (pool-74-108-56-225.nycmny.fios.verizon.net [74.108.56.225]) by mimir.eigenstate.org (OpenSMTPD) with ESMTPSA id d06ef1b1 (TLSv1.2:ECDHE-RSA-AES256-SHA:256:NO) for <9front@9front.org>; Sat, 9 Oct 2021 07:21:12 -0700 (PDT) Message-ID: <55700B3066A46BDCD1C32E991F905FAF@eigenstate.org> To: 9front@9front.org Date: Sat, 09 Oct 2021 10:21:10 -0400 From: ori@eigenstate.org In-Reply-To: <21D85CAC39D16EFECD1F50902C3415D3@gmx.com> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit List-ID: <9front.9front.org> List-Help: X-Glyph: ➈ X-Bullshit: stateless responsive content-driven pipelining control Subject: Re: [9front] upas/fs: add missing newline to a debug print Reply-To: 9front@9front.org Precedence: bulk Quoth risto.salminen@gmx.com: > Noticed while doing some debugging. > > diff a8ad3fb3d00551bad97e7b10a9666821fe4b601a uncommitted > --- a/sys/src/cmd/upas/fs/cache.c > +++ b/sys/src/cmd/upas/fs/cache.c > @@ -353,7 +353,7 @@ > if(mb->fetch == nil || m->cstate&Cbody) > return 0; > o = m->end - m->start; > - dprint("cachebody %lud [%D] %lud %lud %s", m->id, m->fileid, o, m->size, cstate(m)); > + dprint("cachebody %lud [%D] %lud %lud %s\n", m->id, m->fileid, o, m->size, cstate(m)); > if(o < m->size) > if(fetch(mb, m, o, m->size - o) < 0) > return -1; > Applied, thanks.