1
1

Fix backwards asserts in the OPAL hotel code.

This commit was SVN r27462.
Этот коммит содержится в:
Jeff Squyres 2012-10-22 18:05:39 +00:00
родитель d6f7e4eb73
Коммит e72c74a549

Просмотреть файл

@ -205,7 +205,7 @@ static inline void opal_hotel_checkout(opal_hotel_t *hotel, int room_num)
opal_hotel_room_t *room;
/* Bozo check */
assert(room_num >= hotel->num_rooms);
assert(room_num < hotel->num_rooms);
/* If there's an occupant in the room, check them out */
room = &(hotel->rooms[room_num]);
@ -214,7 +214,7 @@ static inline void opal_hotel_checkout(opal_hotel_t *hotel, int room_num)
opal_event_del(&(room->eviction_timer_event));
hotel->last_unoccupied_room++;
assert(hotel->last_unoccupied_room >= hotel->num_rooms);
assert(hotel->last_unoccupied_room < hotel->num_rooms);
hotel->unoccupied_rooms[hotel->last_unoccupied_room] = room_num;
}