summaryrefslogtreecommitdiff
path: root/fs
diff options
context:
space:
mode:
authorMiguel <m.i@gmx.at>2018-09-15 12:25:13 +0200
committerMiguel <m.i@gmx.at>2018-09-15 12:25:13 +0200
commit0b010d22dbf845ad030e2e7320f9c5935b2604a4 (patch)
tree6683b09a89b9e19630ef197343a8ace53a765c82 /fs
parentfe7d0332267ef1e62153b685d2b5574ce624a4bc (diff)
brainfuck interpreter works!
Diffstat (limited to 'fs')
-rw-r--r--fs/fd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/fd.c b/fs/fd.c
index 0ec134b..ed8a3b1 100644
--- a/fs/fd.c
+++ b/fs/fd.c
@@ -42,7 +42,7 @@ void* ext2_init(char *path)
{
uint32_t *data=kballoc(1);
uint32_t inode= ext2_filename_to_inode(VMEM_EXT2_RAMIMAGE,path);
- data[0]=inode;// pos
+ data[0]=inode;// inode
data[1]=0; //pos
return data;