diff options
author | Idan Horowitz <idan.horowitz@gmail.com> | 2022-04-01 20:58:27 +0300 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2022-04-01 21:24:45 +0100 |
commit | 086969277e74d8ba065bf8145d3aeb0dec0bfee5 (patch) | |
tree | 02b3699a66735ef806d9b46353491f18f8e4e7b4 /Userland/Utilities/cal.cpp | |
parent | 0376c127f6e98e03607700d0b3f5154b7014b2f8 (diff) | |
download | serenity-086969277e74d8ba065bf8145d3aeb0dec0bfee5.zip |
Everywhere: Run clang-format
Diffstat (limited to 'Userland/Utilities/cal.cpp')
-rw-r--r-- | Userland/Utilities/cal.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/Userland/Utilities/cal.cpp b/Userland/Utilities/cal.cpp index 28ce938d5b..cc0a3d6176 100644 --- a/Userland/Utilities/cal.cpp +++ b/Userland/Utilities/cal.cpp @@ -12,9 +12,9 @@ #include <string.h> #include <time.h> -const int line_width = 70; -const int line_count = 8; -const int column_width = 22; +int const line_width = 70; +int const line_count = 8; +int const column_width = 22; char print_buffer[line_width * line_count]; char temp_buffer[line_width * 8]; |