diff options
author | Stefan Weil <sw@weilnetz.de> | 2020-08-27 19:55:20 +0200 |
---|---|---|
committer | Laurent Vivier <laurent@vivier.eu> | 2020-09-01 12:07:52 +0200 |
commit | a275e9343ec54a5a6e305890963d8424b514b0ab (patch) | |
tree | 7b715ed0ff46eb88e667a3d4b4a93fc0c60e7881 | |
parent | 2d27ed8231ea3b28014ea2df638dbd020b406ee9 (diff) |
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.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/qemu/main-loop.h b/include/qemu/main-loop.h index 8e98613656..d6892fd208 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. * |