From 33790041b84fb79151e1a6744fe9a7aa868fce5c Mon Sep 17 00:00:00 2001 From: John Hodge Date: Sun, 9 Feb 2014 22:38:43 +0800 Subject: [PATCH] Kernel/Logging - (minor) Reflow array to be more readable --- KernelLand/Kernel/logging.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/KernelLand/Kernel/logging.c b/KernelLand/Kernel/logging.c index 2905dd1e..46d4c049 100644 --- a/KernelLand/Kernel/logging.c +++ b/KernelLand/Kernel/logging.c @@ -29,7 +29,10 @@ const char *csaLevelColours[] = { "\x1B[35m", "\x1B[34m", "\x1B[36m", "\x1B[31m", "\x1B[33m", "\x1B[32m", "\x1B[0m", "\x1B[0m" }; -const char *csaLevelCodes[] = {"k","p","f","e","w","n","l","d"}; +const char *csaLevelCodes[] = { + "k","p","f","e", + "w","n","l","d" + }; // === TYPES === typedef struct sLogEntry -- 2.20.1