From 76d7aefb3379a86eef78c06adb0a249b28ca36b0 Mon Sep 17 00:00:00 2001 From: Rose <83477269+AtariDreams@users.noreply.github.com> Date: Mon, 3 Jul 2023 22:24:36 -0400 Subject: [PATCH] Remove comment about algorithm being from bit-twiddling hacks Said comment no longer applies. --- lib/util/roundup.c | 1 - 1 file changed, 1 deletion(-) diff --git a/lib/util/roundup.c b/lib/util/roundup.c index 7caf8b454..925ddfb8b 100644 --- a/lib/util/roundup.c +++ b/lib/util/roundup.c @@ -40,7 +40,6 @@ sudo_pow2_roundup_v1(unsigned int len) /* * Round a size_t length to the next highest power of two. * Always returns at least 64. - * Algorithm from bit twiddling hacks. */ size_t sudo_pow2_roundup_v2(size_t len)