Changeset 737

Show
Ignore:
Timestamp:
03/03/08 05:08:23 (21 months ago)
Author:
dormando
Message:

Useless check. 'id' will never be higher than POWER_LARGEST.
Which is defined as 200 in slabs.c, but LARGEST_ID is defined as 255 in items.c? Weird.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/server/items.c

    r642 r737  
    107107         */ 
    108108 
    109         if (id > LARGEST_ID) return NULL; 
    110109        if (tails[id] == 0) return NULL; 
    111110