Skip to content

Commit

Permalink
libutils: util.h: fix DIV_ROUND_UP() inline description
Browse files Browse the repository at this point in the history
Remove trailing space char in inline description comment of
DIV_ROUND_UP() macro.

Signed-off-by: Etienne Carriere <[email protected]>
  • Loading branch information
etienne-lms committed Dec 16, 2024
1 parent bd989c4 commit b5160f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/libutils/ext/include/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down

0 comments on commit b5160f0

Please sign in to comment.