diff options
author | Flavio Cruz <flaviocruz@gmail.com> | 2016-03-15 05:49:51 -0400 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2016-04-04 09:48:43 +0200 |
commit | 007eeb3e109d833a52603c3a19436907126b33a8 (patch) | |
tree | 50ccb541cc81ffa5fe866d4c807828d5b152ee8b /libfshelp | |
parent | 0715d1b22a6f0008b70fe4b1881045f65521ac19 (diff) |
Use posix types for mig definitions.
* hurd/hurd_types.defs: Use posix types.
* libfshelp/start-translator-long.c: Use uint32_t instead of
unsigned32_t.
Diffstat (limited to 'libfshelp')
-rw-r--r-- | libfshelp/start-translator-long.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libfshelp/start-translator-long.c b/libfshelp/start-translator-long.c index 8b00e088..da6f52e3 100644 --- a/libfshelp/start-translator-long.c +++ b/libfshelp/start-translator-long.c @@ -24,6 +24,7 @@ #include <errno.h> #include <unistd.h> #include <fcntl.h> +#include <stdint.h> #include <string.h> #include <assert.h> #include "fshelp.h" @@ -107,7 +108,7 @@ service_fsys_startup (fshelp_open_fn_t underlying_open_fn, void *cookie, { union { - unsigned32_t word; + uint32_t word; mach_msg_type_t type; } t, c; t.type = *type; |