From 0df54d980737b7c4bb07aa4ac29e1e7689a6019b Mon Sep 17 00:00:00 2001 From: Keir Fraser Date: Wed, 15 Jul 2009 09:09:48 +0100 Subject: minios: switch to C99 integer types This is a necessary step to make minios build on NetBSD. Signed-off-by: Christoph Egger --- tools/include/xen-sys/MiniOS/privcmd.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'tools/include') diff --git a/tools/include/xen-sys/MiniOS/privcmd.h b/tools/include/xen-sys/MiniOS/privcmd.h index db0f00e3ec..14a328ca8f 100644 --- a/tools/include/xen-sys/MiniOS/privcmd.h +++ b/tools/include/xen-sys/MiniOS/privcmd.h @@ -5,12 +5,12 @@ typedef struct privcmd_hypercall { - u64 op; - u64 arg[5]; + uint64_t op; + uint64_t arg[5]; } privcmd_hypercall_t; typedef struct privcmd_mmap_entry { - u64 mfn; + uint64_t mfn; } privcmd_mmap_entry_t; #endif /* __MINIOS_PUBLIC_PRIVCMD_H__ */ -- cgit v1.2.3