diff options
author | Marvin Borner | 2021-03-20 19:55:51 +0100 |
---|---|---|
committer | GitHub | 2021-03-20 19:55:51 +0100 |
commit | 5132bac014d63331acf61bb60b9254023f76b869 (patch) | |
tree | 8e2946b7a6630da13ee403c787f77270aeb6185d /apps/window.c | |
parent | 435231378798819304eef427bad8e77dffea85df (diff) | |
parent | b96c27bba0b242fc860fc9a2fcb63f121312fa7e (diff) |
Merged ELF loading
Diffstat (limited to 'apps/window.c')
-rw-r--r-- | apps/window.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/apps/window.c b/apps/window.c index 90a414c..0f9e7d1 100644 --- a/apps/window.c +++ b/apps/window.c @@ -8,8 +8,7 @@ int main(void) { struct gui_window win = { 0 }; assert(gui_new_window(&win) > 0); - while (1) - ; + return 0; #if 0 gfx_fill(win.ctx, COLOR_GREEN); // Professional testing |