Forgot to change driver_settings_file to use FixedWidthPointer.

This commit is contained in:
Alex Smith
2012-06-26 10:54:37 +01:00
parent f69dd487b1
commit 5a17b2f1b2
@@ -13,8 +13,8 @@
struct driver_settings_file { struct driver_settings_file {
FixedWidthPointer<struct driver_settings_file> next; FixedWidthPointer<struct driver_settings_file> next;
char name[B_OS_NAME_LENGTH]; char name[B_OS_NAME_LENGTH];
char *buffer; FixedWidthPointer<char> buffer;
size_t size; uint32 size;
}; } _PACKED;
#endif /* KERNEL_BOOT_DRIVER_SETTINGS_H */ #endif /* KERNEL_BOOT_DRIVER_SETTINGS_H */