aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStefan Weil <sw@weilnetz.de>2020-08-27 19:55:20 +0200
committerLaurent Vivier <laurent@vivier.eu>2020-09-01 12:07:52 +0200
commita275e9343ec54a5a6e305890963d8424b514b0ab (patch)
tree7b715ed0ff46eb88e667a3d4b4a93fc0c60e7881
parent2d27ed8231ea3b28014ea2df638dbd020b406ee9 (diff)
downloadqemu-a275e9343ec54a5a6e305890963d8424b514b0ab.zip
qemu-a275e9343ec54a5a6e305890963d8424b514b0ab.tar.gz
qemu-a275e9343ec54a5a6e305890963d8424b514b0ab.tar.bz2
main-loop: Fix comment
Signed-off-by: Stefan Weil <sw@weilnetz.de> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-Id: <20200827175520.32355-1-sw@weilnetz.de> Signed-off-by: Laurent Vivier <laurent@vivier.eu>
-rw-r--r--include/qemu/main-loop.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/main-loop.h b/include/qemu/main-loop.h
index 8e98613..d6892fd 100644
--- a/include/qemu/main-loop.h
+++ b/include/qemu/main-loop.h
@@ -52,7 +52,7 @@ int qemu_init_main_loop(Error **errp);
* repeatedly calls main_loop_wait(false).
*
* Main loop services include file descriptor callbacks, bottom halves
- * and timers (defined in qemu-timer.h). Bottom halves are similar to timers
+ * and timers (defined in qemu/timer.h). Bottom halves are similar to timers
* that execute immediately, but have a lower overhead and scheduling them
* is wait-free, thread-safe and signal-safe.
*