Fixed disk reading

This commit is contained in:
Jozef Nagy 2025-01-29 20:33:45 +01:00
parent fae958815f
commit 36ae3ec0b7
Signed by untrusted user who does not match committer: crz
GPG key ID: 459A4811CEAC7068
6 changed files with 20 additions and 13 deletions

View file

@ -45,7 +45,7 @@ int vfs_init(char *root_mountpoint)
return 1;
}
size_t vfs_read(char *filename, char *buf)
size_t vfs_read(char *filename, char **buf)
{
if (boot_drive->fs->read == NULL) {
debug("vfs_read(): Filesystem didn't set up a read function!");