From c71d8c0fc5367b61a71e1e9c7b42ade05a74d4e2 Mon Sep 17 00:00:00 2001 From: Chris Robinson Date: Wed, 24 Dec 2014 01:17:55 -0800 Subject: [PATCH] Update a comment --- Alc/backends/jack.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Alc/backends/jack.c b/Alc/backends/jack.c index 639037bc..05de5528 100644 --- a/Alc/backends/jack.c +++ b/Alc/backends/jack.c @@ -374,8 +374,8 @@ static ALCboolean ALCjackPlayback_reset(ALCjackPlayback *self) /* Ignore the requested buffer metrics and just keep one JACK-sized buffer * ready for when requested. Note that even though the ringbuffer will have * 2 periods worth of space, only half of it will be filled at a given time - * because there's one byte less of it that's writeable, and we only write - * in update-sized chunks. */ + * because there's one element less of it that's writeable, and we only + * write in update-sized chunks. */ device->Frequency = jack_get_sample_rate(self->Client); if(ConfigValueUInt("jack", "buffer-size", &bufsize)) device->UpdateSize = maxu(jack_get_buffer_size(self->Client), NextPowerOf2(bufsize)); -- 2.11.4.GIT