xv6

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit 3497670122cd0561661a0a2e617ec9ece789c2f0
parent 67a9314ad1318886ee8b9921ab453f08749cf73e
Author: rsc <rsc>
Date:   Sat, 15 Jul 2006 17:23:17 +0000

silence load_icode signedness warning

Diffstat:
Mmain.c | 6+++---
1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/main.c b/main.c @@ -12,9 +12,9 @@ extern char edata[], end[]; extern int acpu; -extern char _binary_user1_start[], _binary_user1_size[]; -extern char _binary_usertests_start[], _binary_usertests_size[]; -extern char _binary_userfs_start[], _binary_userfs_size[]; +extern uint8_t _binary_user1_start[], _binary_user1_size[]; +extern uint8_t _binary_usertests_start[], _binary_usertests_size[]; +extern uint8_t _binary_userfs_start[], _binary_userfs_size[]; extern int use_console_lock;