summaryrefslogtreecommitdiff
path: root/src/user/lib/file.h
diff options
context:
space:
mode:
authordzwdz2022-08-14 21:18:01 +0200
committerdzwdz2022-08-14 21:18:01 +0200
commitfa082df2da6b3be52c66ce0d48c209a3df38115d (patch)
tree1c51b4d084d966fddfbc91afb33469e4582cde84 /src/user/lib/file.h
parentb58a95e1a529db1f640eb9ac3ca6e0244790e0ca (diff)
kernel/ata: "proper" read support
Diffstat (limited to 'src/user/lib/file.h')
-rw-r--r--src/user/lib/file.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/user/lib/file.h b/src/user/lib/file.h
index 9630b6d..8652566 100644
--- a/src/user/lib/file.h
+++ b/src/user/lib/file.h
@@ -3,7 +3,7 @@
struct _LIBC_FILE {
int fd;
- int pos;
+ long pos;
bool eof;
bool error;
};