comparison src/gaimrc.c @ 1010:4dca3277ea15

[gaim-migrate @ 1020] Fix for PPC systems. committer: Tailor Script <tailor@pidgin.im>
author Rob Flynn <gaim@robflynn.com>
date Fri, 20 Oct 2000 03:35:38 +0000
parents 0a4d0ed65e17
children 5bad25457843
comparison
equal deleted inserted replaced
1009:d496fe2614a6 1010:4dca3277ea15
692 sscanf(p->option, "sound%c", &i); 692 sscanf(p->option, "sound%c", &i);
693 i -= 'A'; 693 i -= 'A';
694 694
695 if (p->value[0][0]) 695 if (p->value[0][0])
696 sound_file[i] = g_strdup(p->value[0]); 696 sound_file[i] = g_strdup(p->value[0]);
697 else 697 /* else
698 sound_file[i] = NULL; 698 sound_file[i] = NULL;
699 Removed by Rob. Kill me if this is retarded.
700 Tis was causing segfaults on PPC machines, though.
701 */
699 } 702 }
700 } 703 }
701 704
702 static void gaimrc_write_sounds(FILE *f) 705 static void gaimrc_write_sounds(FILE *f)
703 { 706 {