comparison src/audio/alsa/SDL_alsa_audio.c @ 4364:ae3d564e2716 SDL-1.2

Whoops, missing newline!
author Sam Lantinga <slouken@libsdl.org>
date Mon, 19 Oct 2009 06:01:58 +0000
parents 028d26915548
children d91a8026e0aa
comparison
equal deleted inserted replaced
4363:028d26915548 4364:ae3d564e2716
325 continue; 325 continue;
326 } 326 }
327 status = SDL_NAME(snd_pcm_recover)(pcm_handle, status, 0); 327 status = SDL_NAME(snd_pcm_recover)(pcm_handle, status, 0);
328 if ( status < 0 ) { 328 if ( status < 0 ) {
329 /* Hmm, not much we can do - abort */ 329 /* Hmm, not much we can do - abort */
330 fprintf(stderr, "ALSA write failed (unrecoverable): %s", SDL_NAME(snd_strerror)(status)); 330 fprintf(stderr, "ALSA write failed (unrecoverable): %s\n", SDL_NAME(snd_strerror)(status));
331 this->enabled = 0; 331 this->enabled = 0;
332 return; 332 return;
333 } 333 }
334 continue; 334 continue;
335 } 335 }