From f495cc1e93710c233292a503720ec235a61b685c Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Wed, 18 Mar 2020 17:32:50 +0100 Subject: Applied official linux kernel code style guidelines Due to my change to vim and the clang-format plugin this was needed! --- src/kernel/fs/load.h | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/kernel/fs/load.h') diff --git a/src/kernel/fs/load.h b/src/kernel/fs/load.h index 4ba545f..468501c 100644 --- a/src/kernel/fs/load.h +++ b/src/kernel/fs/load.h @@ -8,20 +8,20 @@ uint32_t userspace; struct font *font; struct font { - uint16_t font_32[758][32]; - uint16_t font_24[758][24]; - uint8_t font_16[758][16]; - uint16_t cursor[19]; + uint16_t font_32[758][32]; + uint16_t font_24[758][24]; + uint8_t font_16[758][16]; + uint16_t cursor[19]; }; void load_binaries(); typedef struct { - char *name; + char *name; - void *(*probe)(uint8_t *buf); + void *(*probe)(uint8_t *buf); - uint8_t (*start)(uint8_t *buf, void *priv); + uint8_t (*start)(uint8_t *buf, void *priv); } loader_t; void loader_init(); -- cgit v1.2.3