changeset 5035:628681ec8a5e

[gaim-migrate @ 5378] cvs compiles again. gotta love the c restriction on where you can declare variables. committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sat, 05 Apr 2003 12:30:10 +0000
parents 4691c5936c01
children 3819a32e2673
files src/gaimrc.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/gaimrc.c	Sat Apr 05 10:45:32 2003 +0000
+++ b/src/gaimrc.c	Sat Apr 05 12:30:10 2003 +0000
@@ -1623,9 +1623,9 @@
 	debug_printf("*** Loading pounces...\n");
 
 	for (l = buddy_pounces; l != NULL; l = l->next) {
-		ph = (struct pounce_placeholder *)l->data;
 		GaimPounceEvent events = GAIM_POUNCE_NONE;
 		GaimGtkPounceAction actions = GAIM_GTKPOUNCE_NONE;
+		ph = (struct pounce_placeholder *)l->data;
 
 		account = gaim_account_find(ph->pouncer, ph->protocol);