From: John Hodge Date: Sun, 9 Feb 2014 14:38:43 +0000 (+0800) Subject: Kernel/Logging - (minor) Reflow array to be more readable X-Git-Url: https://git.ucc.asn.au/?a=commitdiff_plain;h=33790041b84fb79151e1a6744fe9a7aa868fce5c;p=tpg%2Facess2.git Kernel/Logging - (minor) Reflow array to be more readable --- 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