Ruby: minor bugfix, line did not adhere to some macro usage conventions.

This commit is contained in:
Lisa Hsu 2011-03-17 17:08:35 -07:00
parent 556b5c5488
commit c4de6a0522

View file

@ -125,7 +125,7 @@ machineIDToMachineType(MachineID machID)
inline NodeID
L1CacheMachIDToProcessorNum(MachineID machID)
{
assert(machID.type == MachineType_L1Cache);
assert(machID.type == MACHINETYPE_L1CACHE_ENUM);
return machID.num;
}