diff options
author | Matthew Gregan <[email protected]> | 2012-05-15 16:35:12 +1200 |
---|---|---|
committer | Matthew Gregan <[email protected]> | 2012-05-15 16:35:12 +1200 |
commit | c74db657dfb0ce19e49850625be89b7d60b6695b (patch) | |
tree | 00d0d9aba3c5e55045d62134f4e1c5ca016be6dd | |
parent | 35dc1d5c8cc94244b3094b59e3d69cb523bfedf5 (diff) | |
download | cubeb-c74db657dfb0ce19e49850625be89b7d60b6695b.tar.gz cubeb-c74db657dfb0ce19e49850625be89b7d60b6695b.zip |
minor comment clean up.
-rw-r--r-- | src/cubeb_alsa.c | 4 | ||||
-rw-r--r-- | src/cubeb_winmm.c | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/cubeb_alsa.c b/src/cubeb_alsa.c index fb8bb5c..3ece2da 100644 --- a/src/cubeb_alsa.c +++ b/src/cubeb_alsa.c @@ -376,7 +376,7 @@ cubeb_refill_stream(cubeb_stream * stm) double buffer_time = (double) buffer_fill / stm->params.rate; /* Fill the remaining buffer with silence to guarantee one full period - * has been written. */ + has been written. */ snd_pcm_writei(stm->pcm, (char *) p + got, avail - got); set_timeout(&stm->drain_timeout, buffer_time * 1000); @@ -581,7 +581,7 @@ cubeb_init(cubeb ** context, char const * context_name UNUSED) ctx->control_fd_write = fd[1]; /* Force an early rebuild when cubeb_run is first called to ensure fds and - * nfds have been initialized. */ + nfds have been initialized. */ ctx->rebuild = 1; r = pthread_attr_init(&attr); diff --git a/src/cubeb_winmm.c b/src/cubeb_winmm.c index b66f570..ead4cdb 100644 --- a/src/cubeb_winmm.c +++ b/src/cubeb_winmm.c @@ -1,5 +1,5 @@ /* - * Copyright �� 2011 Mozilla Foundation + * Copyright © 2011 Mozilla Foundation * * This program is made available under an ISC-style license. See the * accompanying file LICENSE for details. |