Replaced addr with addr_t.

git-svn-id: file:///srv/svn/repos/haiku/trunk/current@7262 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Axel Dörfler 2004-04-20 23:38:07 +00:00
parent e1a6f46dc9
commit 62dbb799d5

View File

@ -1,5 +1,5 @@
/*
** Copyright 2003, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Copyright 2003-2004, Axel Dörfler, axeld@pinc-software.de. All rights reserved.
** Distributed under the terms of the OpenBeOS License.
*/
#ifndef KERNEL_BOOT_ELF_H
@ -14,7 +14,7 @@ struct preloaded_image {
char *name;
elf_region text_region;
elf_region data_region;
addr dynamic_section; // pointer to the dynamic section
addr_t dynamic_section; // pointer to the dynamic section
Elf32_Ehdr elf_header;
};