summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--THANKS1
-rw-r--r--libl4/ChangeLog7
-rw-r--r--libl4/l4/types.h4
3 files changed, 10 insertions, 2 deletions
diff --git a/THANKS b/THANKS
index 07ba0ce..e7eeeae 100644
--- a/THANKS
+++ b/THANKS
@@ -8,6 +8,7 @@ The following individuals for their support:
Bas Wijnen <b.wijnen@phys.rug.nl>
Marco Gerards <metgerards@student.han.nl>
+Maurizio Boriani <debauxit@yahoo.it>
If you are not on this list because we forgot to add you, please let
us know, so we can fix it!
diff --git a/libl4/ChangeLog b/libl4/ChangeLog
index 4de458b..a1992dd 100644
--- a/libl4/ChangeLog
+++ b/libl4/ChangeLog
@@ -1,3 +1,10 @@
+2003-09-24 Maurizio Boriani <debauxit@yahoo.it>
+
+ * l4/types.h (_L4_BITFIELD4): Fix macro definition.
+ (_L4_BITFIELD6): Was defined twice. The second instance is
+ renamed to ...
+ (_L4_BITFIELD7): ... this.
+
2003-09-22 Marcus Brinkmann <marcus@gnu.org>
* headers.m4: Add arch-dependent files using a shell variable.
diff --git a/libl4/l4/types.h b/libl4/l4/types.h
index b68adfb..cc0a4ab 100644
--- a/libl4/l4/types.h
+++ b/libl4/l4/types.h
@@ -114,12 +114,12 @@ typedef l4_uint64_t l4_word_t;
#define _L4_BITFIELD2(type, bf1, bf2) type bf2; type bf1
#define _L4_BITFIELD3(type, bf1, bf2, bf3) type bf3; type bf2; type bf1
#define _L4_BITFIELD4(type, bf1, bf2, bf3, bf4) \
- type bf4; type bf3; type bf2 type; type bf1
+ type bf4; type bf3; type bf2; type bf1
#define _L4_BITFIELD5(type, bf1, bf2, bf3, bf4, bf5) \
type bf5; type bf4; type bf3; type bf2 type; type bf1
#define _L4_BITFIELD6(type, bf1, bf2, bf3, bf4, bf5, bf6) \
type bf6; type bf5; type bf4; type bf3; type bf2; type bf1
-#define _L4_BITFIELD6(type, bf1, bf2, bf3, bf4, bf5, bf6, bf7) \
+#define _L4_BITFIELD7(type, bf1, bf2, bf3, bf4, bf5, bf6, bf7) \
type bf7; type bf6; type bf5; type bf4; type bf3; type bf2; type bf1
#else
#error "Unsupported endianess."