aboutsummaryrefslogtreecommitdiff
path: root/apps
diff options
context:
space:
mode:
authorMarvin Borner2021-02-25 20:45:10 +0100
committerMarvin Borner2021-02-25 20:45:10 +0100
commita9710cb73cc9ecadaff241428a39a26935cb5c0a (patch)
tree68f509407bc49a4da43ccadfd9115b9e6f7eb413 /apps
parent26587adae4f5ec61d03fd7075805a24b29107fe3 (diff)
Applied even more warning flags!
Fixing all the warnings wasn't that easy actually..
Diffstat (limited to 'apps')
-rw-r--r--apps/window.c2
-rw-r--r--apps/wm.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/apps/window.c b/apps/window.c
index 96691fa..ac29ba1 100644
--- a/apps/window.c
+++ b/apps/window.c
@@ -4,7 +4,7 @@
#include <gui.h>
#include <print.h>
-int main()
+int main(void)
{
struct gui_window win = { 0 };
assert(gui_new_window(&win) > 0);
diff --git a/apps/wm.c b/apps/wm.c
index 6e80f5f..abbb2bd 100644
--- a/apps/wm.c
+++ b/apps/wm.c
@@ -53,7 +53,7 @@ static struct {
u8 right : 1;
} mouse = { 0 };
-static void buffer_flush()
+static void buffer_flush(void)
{
#ifdef FLUSH_TIMEOUT
static u32 time_flush = 0;