View | Details | Raw Unified | Return to bug 191270
Collapse All | Expand All

(-)lib/libutil/humanize_number.c (-1 / +1 lines)
Lines 142-148 Link Here
142
		 * divide once more.
142
		 * divide once more.
143
		 */
143
		 */
144
		for (i = 0;
144
		for (i = 0;
145
		    (quotient >= max || (quotient == max - 1 &&
145
		    (quotient >= max - 1 || (quotient == max - 1 &&
146
		    remainder >= divisordeccut)) && i < maxscale; i++) {
146
		    remainder >= divisordeccut)) && i < maxscale; i++) {
147
			remainder = quotient % divisor;
147
			remainder = quotient % divisor;
148
			quotient /= divisor;
148
			quotient /= divisor;

Return to bug 191270