]> git.ipfire.org Git - thirdparty/libvirt.git/commitdiff
qemu/doc: Fix function name for handling events
authorPhilipp Hahn <hahn@univention.de>
Mon, 12 Jun 2017 15:11:20 +0000 (17:11 +0200)
committerErik Skultety <eskultet@redhat.com>
Tue, 13 Jun 2017 07:43:42 +0000 (09:43 +0200)
Insert missing "IO" into function name.

Signed-off-by: Erik Skultety <eskultet@redhat.com>
src/qemu/EVENTHANDLERS.txt

index 79c1505caacf590cd3f23da6b70c5c8bfe77cb77..39094d793eca0709609c48cd1905f62205093763 100644 (file)
@@ -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()