commit | 31552529a7eba5011dac74bab18a852860c45c9d | [log] [tgz] |
---|---|---|
author | Paolo Bonzini <pbonzini@redhat.com> | Fri Jan 13 17:34:01 2012 +0100 |
committer | Anthony Liguori <aliguori@us.ibm.com> | Fri Feb 17 08:33:32 2012 -0600 |
tree | dda9b8146324b71445dd563530670e6b4da8c5e4 | |
parent | c77de088b1067fc0e0df322e5bac60a3a26a0613 [diff] [blame] |
notifier: switch to QLIST Notifiers do not need to access both ends of the list, and using a QLIST also simplifies the API. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Signed-off-by: Anthony Liguori <aliguori@us.ibm.com>
diff --git a/input.c b/input.c index 9ade63f..b618ea4 100644 --- a/input.c +++ b/input.c
@@ -268,5 +268,5 @@ void qemu_remove_mouse_mode_change_notifier(Notifier *notify) { - notifier_list_remove(&mouse_mode_notifiers, notify); + notifier_remove(notify); }