diff --git a/Userland/Utilities/cal.cpp b/Userland/Utilities/cal.cpp index 7ffe8ebcc5..15d636c73e 100644 --- a/Userland/Utilities/cal.cpp +++ b/Userland/Utilities/cal.cpp @@ -71,7 +71,7 @@ static ErrorOr> month_lines_to_print(Header header_mode, int mont if (year == current_year && month == current_month && day == current_day) { TRY(days_in_row.try_append(TRY(String::formatted(ANSI_INVERT_OUTPUT "{:2}" ANSI_RESET_OUTPUT, day)))); } else { - TRY(days_in_row.try_append(TRY(String::formatted("{:02}", day)))); + TRY(days_in_row.try_append(TRY(String::formatted("{:2}", day)))); } day++; }