diff --git a/src/nodeinfo.c b/src/nodeinfo.c index 1b4a8d7d2f82d457d3ef6bdac55724f29d04c236..245992275d7909ffe5a5d674642e2e110795b27c 100644 --- a/src/nodeinfo.c +++ b/src/nodeinfo.c @@ -2041,9 +2041,7 @@ nodeGetFreePages(unsigned int npages, goto cleanup; } - lastCell = startCell + cellCount; - if (startCell + cellCount < lastCell) - lastCell = startCell + cellCount; + lastCell = MIN(lastCell, startCell + cellCount); for (cell = startCell; cell < lastCell; cell++) { for (i = 0; i < npages; i++) {