diff options
author | Anton Kling <anton@kling.gg> | 2024-12-12 16:03:08 +0100 |
---|---|---|
committer | Anton Kling <anton@kling.gg> | 2024-12-12 16:03:08 +0100 |
commit | b033314bf1901d436dc71d41d5e1f37dda47e511 (patch) | |
tree | 120bd137888a7f96904a47af7d20422608ffe225 /userland/windowserver/draw.h | |
parent | dcbcdbdc5bcfb86eca05fb655e3bf009d89e39e0 (diff) |
formatting: Use clang-format on all projects
This commit also add braces to all `if` statements.
Diffstat (limited to 'userland/windowserver/draw.h')
-rw-r--r-- | userland/windowserver/draw.h | 3 |
1 files changed, 2 insertions, 1 deletions
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 |