summaryrefslogtreecommitdiff
path: root/recordmydesktop/src
diff options
context:
space:
mode:
authoriovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a>2006-12-10 10:05:58 +0000
committeriovar <iovar@f606c939-3180-4ac9-a4b8-4b8779d57d0a>2006-12-10 10:05:58 +0000
commitcef7f3227bc7479254e3d2173680825291c9deb3 (patch)
tree85c28946e023e6242efe3b935e4a2eba7209850d /recordmydesktop/src
parent8eebfc55196d58b8cf957d92dc5959675de4dc8b (diff)
underrun message correction
git-svn-id: https://recordmydesktop.svn.sourceforge.net/svnroot/recordmydesktop/trunk@229 f606c939-3180-4ac9-a4b8-4b8779d57d0a
Diffstat (limited to 'recordmydesktop/src')
-rw-r--r--recordmydesktop/src/capture_sound.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/recordmydesktop/src/capture_sound.c b/recordmydesktop/src/capture_sound.c
index f4a7aea..8e3bfd3 100644
--- a/recordmydesktop/src/capture_sound.c
+++ b/recordmydesktop/src/capture_sound.c
@@ -75,7 +75,7 @@ void *CaptureSound(ProgData *pdata){
newbuf->data+framesize*sret,
frames-sret);
if(temp_sret==-EPIPE){
- fprintf(stderr,"An error occured while reading sound data:\n %s\n",snd_strerror(temp_sret));
+ fprintf(stderr,"%s: Underrun occurred.\n",snd_strerror(temp_sret));
snd_pcm_prepare(pdata->sound_handle);
}
else if (temp_sret<0){
© All Rights Reserved