comparison src/audlegacy/hook.c @ 4875:4168232afc19

This warning message was a mistake.
author John Lindgren <john.lindgren@tds.net>
date Sun, 26 Apr 2009 17:52:16 -0400
parents c97b4291ec8b
children
comparison
equal deleted inserted replaced
4874:43eb8388760d 4875:4168232afc19
121 121
122 g_return_if_fail(name != NULL); 122 g_return_if_fail(name != NULL);
123 123
124 hook = hook_find(name); 124 hook = hook_find(name);
125 125
126 if (hook == NULL) { 126 if (hook == NULL)
127 printf ("Warning: no hook found for \"%s\"\n", name);
128 return; 127 return;
129 }
130 128
131 for (iter = hook->items; iter != NULL; iter = g_slist_next(iter)) 129 for (iter = hook->items; iter != NULL; iter = g_slist_next(iter))
132 { 130 {
133 HookItem *hookitem = (HookItem*)iter->data; 131 HookItem *hookitem = (HookItem*)iter->data;
134 132