diff options
author | Marvin Borner | 2021-01-08 14:51:11 +0100 |
---|---|---|
committer | Marvin Borner | 2021-01-08 14:51:11 +0100 |
commit | 01c570789d7f9ccc1521b791903c8a499b0f6323 (patch) | |
tree | e5275dbbc207db6be843df918b3944cc822d0819 /apps/files.c | |
parent | 52920b03e996cf60b2665772837bfa0f1661a430 (diff) |
Kinda working VFS implementation
Diffstat (limited to 'apps/files.c')
-rw-r--r-- | apps/files.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files.c b/apps/files.c index e21af5a..df590d9 100644 --- a/apps/files.c +++ b/apps/files.c @@ -38,7 +38,7 @@ void render_list(const char *path) gui_remove_element(list); list = gui_add_container(root, 0, 0, 100, 100, COLOR_BLACK); - struct dirent *d = read(path); + struct dirent *d = sread(path); int sum = 0; int calc = 0; |