diff options
author | dzwdz | 2022-08-14 21:18:01 +0200 |
---|---|---|
committer | dzwdz | 2022-08-14 21:18:01 +0200 |
commit | fa082df2da6b3be52c66ce0d48c209a3df38115d (patch) | |
tree | 1c51b4d084d966fddfbc91afb33469e4582cde84 /src/user | |
parent | b58a95e1a529db1f640eb9ac3ca6e0244790e0ca (diff) |
kernel/ata: "proper" read support
Diffstat (limited to 'src/user')
-rw-r--r-- | src/user/lib/file.h | 2 |
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; }; |