sb16: return Blocksize instead of buffer size

This commit is contained in:
cinap_lenrek 2011-05-20 21:16:27 +00:00
parent 6cd063199d
commit 9adf75a709

View file

@ -503,9 +503,9 @@ audiostatus(Audio *adev, void *a, long n, vlong)
Ctlr *ctlr = adev->ctlr;
return snprint((char*)a, n,
"bufsize %6lud buffered %6ld "
"bufsize %6d buffered %6ld "
"offset %10lud time %19lld\n",
ctlr->ring.nbuf, buffered(&ctlr->ring),
Blocksize, buffered(&ctlr->ring),
ctlr->totcount, ctlr->tottime);
}