diff src/sound.c @ 1269:677e2c9e8baf

[gaim-migrate @ 1279] got rid of printf's (changed to g_print or removed), and in irc.c, made it so we can be in a chat room, and don't do the buddy list right away committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Thu, 14 Dec 2000 13:32:10 +0000
parents 46c09828e929
children e6f9acc31500
line wrap: on
line diff
--- a/src/sound.c	Thu Dec 14 13:26:11 2000 +0000
+++ b/src/sound.c	Thu Dec 14 13:32:10 2000 +0000
@@ -312,8 +312,7 @@
 		return;
 	else if (pid == 0) {
 		if (sound_options & OPT_SOUND_BEEP) {
-			printf("\a");
-			fflush(stdout);
+			g_print("\a");
 			_exit(0);
 		}
 
@@ -363,8 +362,7 @@
 		return;
 	else if (pid == 0) {
 		if (sound_options & OPT_SOUND_BEEP) {
-			printf("\a");
-			fflush(stdout);
+			g_print("\a");
 			_exit(0);
 		}
 #ifdef ESD_SOUND