From: Philipp Hahn Date: Mon, 12 Jun 2017 15:11:20 +0000 (+0200) Subject: qemu/doc: Fix function name for handling events X-Git-Tag: v3.5.0-rc1~98 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=ec9f3950e35e54e01a89fd66df42136d3c11c91a;p=thirdparty%2Flibvirt.git qemu/doc: Fix function name for handling events Insert missing "IO" into function name. Signed-off-by: Erik Skultety --- diff --git a/src/qemu/EVENTHANDLERS.txt b/src/qemu/EVENTHANDLERS.txt index 79c1505caa..39094d793e 100644 --- a/src/qemu/EVENTHANDLERS.txt +++ b/src/qemu/EVENTHANDLERS.txt @@ -17,7 +17,7 @@ other qemu events in the future. ---------------------------------------------------- Any event emitted by qemu is received by -qemu_monitor_json.c:qemuMonitorJSONProcessEvent(). It looks up the +qemu_monitor_json.c:qemuMonitorJSONIOProcessEvent(). It looks up the event by name in the table eventHandlers (in the same file), which should have an entry like this for each event that libvirt understands: @@ -27,7 +27,7 @@ understands: NB: This table is searched with bsearch, so it *must* be alphabetically sorted. -qemuMonitorJSONProcessEvent calls the function listed in +qemuMonitorJSONIOProcessEvent calls the function listed in eventHandlers, e.g.: qemu_monitor_json.c:qemuMonitorJSONHandleNicRxFilterChanged()