From b033314bf1901d436dc71d41d5e1f37dda47e511 Mon Sep 17 00:00:00 2001 From: Anton Kling Date: Thu, 12 Dec 2024 16:03:08 +0100 Subject: formatting: Use clang-format on all projects This commit also add braces to all `if` statements. --- userland/windowserver/draw.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'userland/windowserver/draw.h') diff --git a/userland/windowserver/draw.h b/userland/windowserver/draw.h index fe78bc1..e25f4aa 100644 --- a/userland/windowserver/draw.h +++ b/userland/windowserver/draw.h @@ -15,5 +15,6 @@ void draw_line(DISPLAY *disp, int sx, int sy, int dx, int dy, uint32_t color); void draw_wallpaper(const DISPLAY *disp); void draw_rectangle(DISPLAY *disp, int x, int y, int sx, int sy, uint32_t color); -void draw_outline(DISPLAY *disp, int x, int y, int sx, int sy, int border_px, uint32_t color); +void draw_outline(DISPLAY *disp, int x, int y, int sx, int sy, int border_px, + uint32_t color); #endif -- cgit v1.2.3