comparison src/sound.c @ 777:1d60fb2c3b3b

[gaim-migrate @ 787] eh. it's debateable. gdk_beep(), printf("\a"), printf("%c", 0x07). committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Tue, 29 Aug 2000 01:03:07 +0000
parents 9614e69f68ca
children 035d3115c6fe
comparison
equal deleted inserted replaced
776:626975d79bff 777:1d60fb2c3b3b
241 241
242 if (pid < 0) 242 if (pid < 0)
243 return; 243 return;
244 else if (pid == 0) { 244 else if (pid == 0) {
245 if (sound_options & OPT_SOUND_BEEP) { 245 if (sound_options & OPT_SOUND_BEEP) {
246 gdk_beep(); 246 printf("\a");
247 _exit(0); 247 _exit(0);
248 } 248 }
249 249
250 #ifdef ESD_SOUND 250 #ifdef ESD_SOUND
251 /* ESD is our player of choice. Are we OK to 251 /* ESD is our player of choice. Are we OK to