From b5160f034bcc577d67e524856f4dc27d4d0f9b5e Mon Sep 17 00:00:00 2001 From: Etienne Carriere Date: Mon, 16 Dec 2024 09:26:27 +0100 Subject: [PATCH] libutils: util.h: fix DIV_ROUND_UP() inline description Remove trailing space char in inline description comment of DIV_ROUND_UP() macro. Signed-off-by: Etienne Carriere --- lib/libutils/ext/include/util.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/libutils/ext/include/util.h b/lib/libutils/ext/include/util.h index 8b60e4aa73b..c62f1d198f5 100644 --- a/lib/libutils/ext/include/util.h +++ b/lib/libutils/ext/include/util.h @@ -92,7 +92,7 @@ (((v) / (size)) * (size))) /* - * Round up the result of x / y to the nearest upper integer if result is not + * Round up the result of x / y to the nearest upper integer if result is not * already an integer. */ #define DIV_ROUND_UP(x, y) (((x) + (y) - 1) / (y))