summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--qemu-tool.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/qemu-tool.c b/qemu-tool.c
index 87cc2949b2..74d4b4f80e 100644
--- a/qemu-tool.c
+++ b/qemu-tool.c
@@ -82,6 +82,6 @@ int qemu_set_fd_handler2(int fd,
 int64_t qemu_get_clock(QEMUClock *clock)
 {
     struct timeval tv;
-    gettimeofday(&tv, NULL);
+    qemu_gettimeofday(&tv);
     return (tv.tv_sec * 1000000000LL + (tv.tv_usec * 1000)) / 1000000;
 }