From 304752fccba4554b8dbfad8f1d9b45caefc20d88 Mon Sep 17 00:00:00 2001 From: Linus Groh Date: Mon, 31 May 2021 18:02:48 +0100 Subject: [PATCH] cal: Remove unused variable declarations --- Userland/Utilities/cal.cpp | 2 -- 1 file changed, 2 deletions(-) diff --git a/Userland/Utilities/cal.cpp b/Userland/Utilities/cal.cpp index 06eaf83be5..c18fc5015e 100644 --- a/Userland/Utilities/cal.cpp +++ b/Userland/Utilities/cal.cpp @@ -17,8 +17,6 @@ const int column_width = 22; char print_buffer[line_width * line_count]; char temp_buffer[line_width * 8]; -int target_year; -int target_month; int target_day; int current_year;