[main] Fix a goof.

This commit is contained in:
Kevin Lange 2011-01-29 14:55:04 -06:00
parent d067e3d8a6
commit da3a696428

2
main.c
View File

@ -98,7 +98,7 @@ main(struct multiboot *mboot_ptr) {
if (!test_file) {
kprintf("Couldn't find hello.txt\n");
}
kprintf("Found at inode %d\n", test_file->name, test_file->inode);
kprintf("Found at inode %d\n", test_file->inode);
char buffer[256];
uint32_t bytes_read;
bytes_read = read_fs(test_file, 0, 255, &buffer);