From: Jelle van der Waa Date: Sat, 17 May 2025 16:07:58 +0000 (+0200) Subject: pretty-print: correct argument comment X-Git-Tag: v258-rc1~559^2~7 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=d0ae0e4f07a0a5283ca33fe42537331cc1c5c1c9;p=thirdparty%2Fsystemd.git pretty-print: correct argument comment --- diff --git a/src/shared/pretty-print.c b/src/shared/pretty-print.c index 0f5ccde54f8..cb13a244ab4 100644 --- a/src/shared/pretty-print.c +++ b/src/shared/pretty-print.c @@ -457,7 +457,7 @@ int terminal_tint_color(double hue, char **ret) { return log_debug_errno(r, "Unable to get terminal background color: %m"); double s, v; - rgb_to_hsv(red, green, blue, /* h= */ NULL, &s, &v); + rgb_to_hsv(red, green, blue, /* ret_h= */ NULL, &s, &v); if (v > 50) /* If the background is bright, then pull down saturation */ s = 25;