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:
Axel Dörfler 2004-04-21 01:29:55 +00:00
parent 8af4cf5fba
commit 95bd98d938
1 changed files with 3 additions and 3 deletions

View File

@ -9,9 +9,9 @@
#include <SupportDefs.h>
typedef struct address_range {
uint32 start;
uint32 size;
typedef struct addr_range {
addr_t start;
addr_t size;
} addr_range;
#include <platform_kernel_args.h>