bug-hurd
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Use uint32_t instead of unsigned32_t.


From: Flavio Cruz
Subject: [PATCH] Use uint32_t instead of unsigned32_t.
Date: Tue, 15 Mar 2016 05:48:48 -0400
User-agent: Mutt/1.5.24 (2015-08-30)

* utils.c: Generate code using uint32_t.
---
 utils.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils.c b/utils.c
index 4c2a87b..ccde966 100644
--- a/utils.c
+++ b/utils.c
@@ -77,7 +77,7 @@ WriteBogusDefines(FILE *file)
 
     fprintf(file, "#define BAD_TYPECHECK(type, check) mig_unlikely (({\\\n");
     fprintf(file,
-           "  union { mach_msg_type_t t; unsigned32_t w; } _t, _c;\\\n");
+           "  union { mach_msg_type_t t; uint32_t w; } _t, _c;\\\n");
     fprintf(file,
            "  _t.t = *(type); _c.t = *(check);_t.w != _c.w; }))\n");
 }
-- 
2.6.4




reply via email to

[Prev in Thread] Current Thread [Next in Thread]