diff options
author | phk <phk@FreeBSD.org> | 2003-06-09 19:40:34 +0000 |
---|---|---|
committer | phk <phk@FreeBSD.org> | 2003-06-09 19:40:34 +0000 |
commit | 541146245411598eb0f705d83d8ddec3b21b6e25 (patch) | |
tree | b2425649da2d1176485e95c197de88fd269b0edf /sys/vm | |
parent | a8495cc7d7fcaa92839f38ad49d09ce7b28ad86e (diff) | |
download | FreeBSD-src-541146245411598eb0f705d83d8ddec3b21b6e25.zip FreeBSD-src-541146245411598eb0f705d83d8ddec3b21b6e25.tar.gz |
A white-space nit I noticed.
Diffstat (limited to 'sys/vm')
-rw-r--r-- | sys/vm/uma_core.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/vm/uma_core.c b/sys/vm/uma_core.c index a27794b..17bc03f 100644 --- a/sys/vm/uma_core.c +++ b/sys/vm/uma_core.c @@ -1843,7 +1843,7 @@ uma_zfree_internal(uma_zone_t zone, void *item, void *udata, int skip) /* Do we need to remove from any lists? */ if (slab->us_freecount+1 == zone->uz_ipers) { - LIST_REMOVE(slab, us_link); + LIST_REMOVE(slab,us_link); LIST_INSERT_HEAD(&zone->uz_free_slab, slab, us_link); } else if (slab->us_freecount == 0) { LIST_REMOVE(slab, us_link); |