Fixed addr_range structure: struct name didn't match typedef name, now uses
addr_t for the address base/size instead of (the non-portable) uint32. git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7277 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
@@ -9,9 +9,9 @@
|
|||||||
#include <SupportDefs.h>
|
#include <SupportDefs.h>
|
||||||
|
|
||||||
|
|
||||||
typedef struct address_range {
|
typedef struct addr_range {
|
||||||
uint32 start;
|
addr_t start;
|
||||||
uint32 size;
|
addr_t size;
|
||||||
} addr_range;
|
} addr_range;
|
||||||
|
|
||||||
#include <platform_kernel_args.h>
|
#include <platform_kernel_args.h>
|
||||||
|
|||||||
Reference in New Issue
Block a user