From 4c190ce58406c7a7c7116f5c6543c44a503f60c5 Mon Sep 17 00:00:00 2001 From: Philipp Wiesemann Date: Sat, 1 Jul 2017 23:00:07 +0200 Subject: [PATCH] netbsd: Fixed comment. --- src/audio/netbsd/SDL_netbsdaudio.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/audio/netbsd/SDL_netbsdaudio.c b/src/audio/netbsd/SDL_netbsdaudio.c index 60339d2c3..90b33acdb 100644 --- a/src/audio/netbsd/SDL_netbsdaudio.c +++ b/src/audio/netbsd/SDL_netbsdaudio.c @@ -220,7 +220,7 @@ NETBSDAUDIO_CaptureFromDevice(_THIS, void *_buffer, int buflen) Uint8 *buffer = (Uint8 *) _buffer; int br, p = 0; - /* Write the audio data, checking for EAGAIN on broken audio drivers */ + /* Capture the audio data, checking for EAGAIN on broken audio drivers */ do { br = read(this->hidden->audio_fd, buffer + p, buflen - p); if (br > 0)