comparison src/aim.c @ 1697:23ad4f7b644f

[gaim-migrate @ 1707] fprintf is probably better in this case than g_print. committer: Tailor Script <tailor@pidgin.im>
author Eric Warmenhoven <eric@warmenhoven.org>
date Wed, 11 Apr 2001 04:36:21 +0000
parents 72235e3fcff6
children f42ce672c560
comparison
equal deleted inserted replaced
1696:c6390c52caca 1697:23ad4f7b644f
388 { 388 {
389 debug_printf("caught signal %d\n", sig); 389 debug_printf("caught signal %d\n", sig);
390 gtkspell_stop(); 390 gtkspell_stop();
391 switch (sig) { 391 switch (sig) {
392 case SIGSEGV: 392 case SIGSEGV:
393 g_print("Gaim has segfaulted and attempted to dump a core file.\n" 393 fprintf(stderr, "Gaim has segfaulted and attempted to dump a core file.\n"
394 "Please notify the gaim maintainers by reporting a bug at\n" 394 "Please notify the gaim maintainers by reporting a bug at\n"
395 "http://sourceforge.net/projects/gaim/\n\n" 395 "http://sourceforge.net/projects/gaim/\n\n"
396 "Please make sure to specify what you were doing at the time,\n" 396 "Please make sure to specify what you were doing at the time,\n"
397 "and post the backtrace from the core file (if you do not know\n" 397 "and post the backtrace from the core file (if you do not know\n"
398 "how to get the backtrace, please IM either EWarmenhoven or\n" 398 "how to get the backtrace, please IM either EWarmenhoven or\n"
399 "RobFlynn and they can instruct you).\n"); 399 "RobFlynn and they can instruct you).\n");
400 abort(); 400 abort();
401 break; 401 break;
402 default: 402 default:
403 gtk_main_quit(); 403 gtk_main_quit();
404 exit(0); 404 exit(0);