aboutsummaryrefslogtreecommitdiff
path: root/libtxt
diff options
context:
space:
mode:
authorMarvin Borner2021-01-08 14:51:11 +0100
committerMarvin Borner2021-01-08 14:51:11 +0100
commit01c570789d7f9ccc1521b791903c8a499b0f6323 (patch)
treee5275dbbc207db6be843df918b3944cc822d0819 /libtxt
parent52920b03e996cf60b2665772837bfa0f1661a430 (diff)
Kinda working VFS implementation
Diffstat (limited to 'libtxt')
-rw-r--r--libtxt/keymap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libtxt/keymap.c b/libtxt/keymap.c
index ae2ab02..e03590e 100644
--- a/libtxt/keymap.c
+++ b/libtxt/keymap.c
@@ -26,7 +26,7 @@ void map(struct keymap *keymap, int line, char ch, int index)
// Very ugly code but it should work for now
struct keymap *keymap_parse(const char *path)
{
- char *keymap_src = read(path);
+ char *keymap_src = sread(path);
if (!keymap_src)
return NULL;
struct keymap *keymap = malloc(sizeof(*keymap));