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/userspace/graphics/graphics.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/userspace/graphics/graphics.h') diff --git a/src/userspace/graphics/graphics.h b/src/userspace/graphics/graphics.h index a0dcaf5..0e3d5be 100644 --- a/src/userspace/graphics/graphics.h +++ b/src/userspace/graphics/graphics.h @@ -4,15 +4,15 @@ #include 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]; }; struct userspace_pointers { - unsigned char *fb; - struct font *font; + unsigned char *fb; + struct font *font; }; void init_framebuffer(); -- cgit v1.2.3