aboutsummaryrefslogtreecommitdiff
path: root/src/kernel/fs/iso9660/iso9660.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/kernel/fs/iso9660/iso9660.h')
-rw-r--r--src/kernel/fs/iso9660/iso9660.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/kernel/fs/iso9660/iso9660.h b/src/kernel/fs/iso9660/iso9660.h
index 3de5d1a..86629e4 100644
--- a/src/kernel/fs/iso9660/iso9660.h
+++ b/src/kernel/fs/iso9660/iso9660.h
@@ -10,13 +10,13 @@
#include <stdint.h>
-struct ISO9660_entity {
- uint32_t LBA;
+struct iso9660_entity {
+ uint32_t lba;
uint32_t length;
};
-struct ISO9660_entity *ISO9660_get(char **dirs, uint8_t dirs_sz);
+struct iso9660_entity *ISO9660_get(char **dirs, uint8_t dirs_sz);
-uint8_t *ISO9660_read(struct ISO9660_entity *entity);
+uint8_t *ISO9660_read(struct iso9660_entity *entity);
#endif