From 5ddfd7847ae59181a1f8be94e7d9a7c6ed3c985a Mon Sep 17 00:00:00 2001 From: Guillem Jover Date: Tue, 30 Aug 2011 03:09:30 +0200 Subject: Cast host_get_time() arguments to fix warnings * linux/dev/glue/misc.c (do_gettimeofday): Cast arguments to `host_get_time'. --- linux/dev/glue/misc.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'linux') diff --git a/linux/dev/glue/misc.c b/linux/dev/glue/misc.c index d8ca3c2..b467650 100644 --- a/linux/dev/glue/misc.c +++ b/linux/dev/glue/misc.c @@ -229,7 +229,12 @@ add_blkdev_randomness (int major) void do_gettimeofday (struct timeval *tv) { - host_get_time (1, tv); + /* + * XXX: The first argument should be mach_host_self (), but that's too + * expensive, and the host argument is not used by host_get_time (), + * only checked not to be HOST_NULL. + */ + host_get_time ((host_t) 1, (time_value_t *) tv); } int -- cgit v1.2.3