s/xfree/free in comments

This commit is contained in:
Alexandre Ratchov 2015-09-05 13:18:04 +02:00
parent ebed8a554c
commit f2b6fd9f4b
1 changed files with 2 additions and 2 deletions

View File

@ -1453,7 +1453,7 @@ slot_new(struct dev *d, char *who, struct slotops *ops, void *arg, int mode)
}
/*
* find a xfree controller slot with the same name/unit
* find a free controller slot with the same name/unit
*/
for (i = 0, s = d->slot; i < DEV_NSLOT; i++, s++) {
if (s->ops == NULL &&
@ -1471,7 +1471,7 @@ slot_new(struct dev *d, char *who, struct slotops *ops, void *arg, int mode)
}
/*
* couldn't find a matching slot, pick oldest xfree slot
* couldn't find a matching slot, pick oldest free slot
* and set its name/unit
*/
bestser = 0;