diff options
author | Marvin Borner | 2020-11-05 17:30:39 +0100 |
---|---|---|
committer | Marvin Borner | 2020-11-05 17:32:53 +0100 |
commit | 63e86f792167e6cc2e9600d00b184a3c83fe7498 (patch) | |
tree | 31e2d583be3ebf34782f6ec37f6c524657c40686 /apps/files.c | |
parent | 916fca2161e76de67a5106b90baf00a57f2a0512 (diff) |
Added warning flags and fixed them :)
Diffstat (limited to 'apps/files.c')
-rw-r--r-- | apps/files.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/files.c b/apps/files.c index 2176a99..c27e39c 100644 --- a/apps/files.c +++ b/apps/files.c @@ -17,7 +17,7 @@ struct dirent { char name[]; }; -void render_list(char *path); +void render_list(const char *path); void on_click(struct event_mouse *event, struct element *elem) { (void)event; @@ -31,7 +31,7 @@ void on_click(struct event_mouse *event, struct element *elem) } // TODO: Dir iterator as kernel syscall? -void render_list(char *path) +void render_list(const char *path) { static struct element *list = NULL; if (list) @@ -49,7 +49,7 @@ void render_list(char *path) d->name[d->name_len] = '\0'; struct element *label = gui_add_label(list, 5, cnt * (gfx_font_height(FONT_16) + 5), FONT_16, d->name, COLOR_BLACK, COLOR_WHITE); - label->attributes = path; + label->attributes = (char *)path; if (d->type_indicator == 2) // Dir label->event.on_click = on_click; |