Skip to content

Commit

Permalink
netbsd: Fixed comment.
Browse files Browse the repository at this point in the history
  • Loading branch information
philippwiesemann committed Jul 1, 2017
1 parent 4c48260 commit 4c190ce
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/audio/netbsd/SDL_netbsdaudio.c
Expand Up @@ -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)
Expand Down

0 comments on commit 4c190ce

Please sign in to comment.