diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-10 04:17:38 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 2019-04-10 04:17:38 +0000 |
commit | 8f0c1aa9fd0ce5d319af8590f3da4e11d36119ac (patch) | |
tree | 623711690bbd522dd6a546a3a7a25db4ca835639 /sys/arch/arm64/stand | |
parent | 11a564e909360219908f5872d7b84a175d37875e (diff) |
change marks[] array to uint64_t, so the code can track full 64-bit
details from the ELF header instead of faking it.
Proposal from mlarkin, tested on most architectures already
Diffstat (limited to 'sys/arch/arm64/stand')
-rw-r--r-- | sys/arch/arm64/stand/efiboot/exec.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/arm64/stand/efiboot/exec.c b/sys/arch/arm64/stand/efiboot/exec.c index 9ddb31806fc..07886ad2dce 100644 --- a/sys/arch/arm64/stand/efiboot/exec.c +++ b/sys/arch/arm64/stand/efiboot/exec.c @@ -1,4 +1,4 @@ -/* $OpenBSD: exec.c,v 1.6 2019/01/09 13:18:50 yasuoka Exp $ */ +/* $OpenBSD: exec.c,v 1.7 2019/04/10 04:17:34 deraadt Exp $ */ /* * Copyright (c) 2006, 2016 Mark Kettenis @@ -88,7 +88,7 @@ cpu_inval_icache(void) } void -run_loadfile(u_long *marks, int howto) +run_loadfile(uint64_t *marks, int howto) { char args[256]; char *cp; |