diff options
-rw-r--r-- | viengoos/ChangeLog | 9 | ||||
-rw-r--r-- | viengoos/object.c | 2 |
2 files changed, 10 insertions, 1 deletions
diff --git a/viengoos/ChangeLog b/viengoos/ChangeLog index 5604614..bdefa45 100644 --- a/viengoos/ChangeLog +++ b/viengoos/ChangeLog @@ -1,3 +1,12 @@ +2008-11-11 Neal H. Walfield <neal@gnu.org> + + * object.c (object_desc_claim): Fix typo. + +2008-11-11 Neal H. Walfield <neal@gnu.org> + + * ager.c (ager_loop): Add frames to the end of the active or + inactive list, not the head. + 2008-11-04 Neal H. Walfield <neal@gnu.org> * activity.h (struct activity): Replace fields active, inactive, diff --git a/viengoos/object.c b/viengoos/object.c index 52b2283..a36b233 100644 --- a/viengoos/object.c +++ b/viengoos/object.c @@ -904,7 +904,7 @@ object_desc_claim (struct activity *activity, struct object_desc *desc, cap_type_string (desc->type), desc->policy.discardable ? "discardable" : "precious"); - out: + out:; #ifndef NDEBUG if (desc->activity && update_accounting) { |