Commit 4c190ce58406c7a7c7116f5c6543c44a503f60c5

Philipp Wiesemann 2017-07-01T23:00:07

netbsd: Fixed comment.

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/src/audio/netbsd/SDL_netbsdaudio.c b/src/audio/netbsd/SDL_netbsdaudio.c
index 60339d2..90b33ac 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)