summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--hurd/ChangeLog4
-rw-r--r--hurd/cap.h2
2 files changed, 5 insertions, 1 deletions
diff --git a/hurd/ChangeLog b/hurd/ChangeLog
index 86eac83..89c825e 100644
--- a/hurd/ChangeLog
+++ b/hurd/ChangeLog
@@ -1,3 +1,7 @@
+2008-11-11 Neal H. Walfield <neal@gnu.org>
+
+ * cap.h (struct cap): Make priority signed.
+
2008-11-04 Neal H. Walfield <neal@gnu.org>
* cap.h (OBJECT_PRIORITY_BITS): Change to 7.
diff --git a/hurd/cap.h b/hurd/cap.h
index 4fef5f2..9545856 100644
--- a/hurd/cap.h
+++ b/hurd/cap.h
@@ -249,7 +249,7 @@ struct cap
/* Whether the designated object may be discarded. */
uint32_t discardable : 1;
/* The designated object's priority. */
- uint32_t priority : OBJECT_PRIORITY_BITS;
+ int32_t priority : OBJECT_PRIORITY_BITS;
struct cap_addr_trans addr_trans;