diff options
author | Warner Losh <imp@FreeBSD.org> | 2018-03-13 16:33:00 +0000 |
---|---|---|
committer | Warner Losh <imp@FreeBSD.org> | 2018-03-13 16:33:00 +0000 |
commit | 56e53cb8ef000c3ef72337a4095987a932cdedef (patch) | |
tree | bd53d80c2702e6ceca59a093eb5d39ec37c00c59 /stand/efi/loader/arch | |
parent | 011bbaa5138e04e38ff28537ae734216bdbfe270 (diff) | |
download | src-56e53cb8ef000c3ef72337a4095987a932cdedef.tar.gz src-56e53cb8ef000c3ef72337a4095987a932cdedef.zip |
Prefer uintXX_t to u_intXX_t
A foolish consistency is the hobgoblin of little minds, adored by
little statesmen and philosophers and divines. With consistency a
great soul has simply nothing to do. -- Ralph Waldo Emerson
Notes
Notes:
svn path=/head/; revision=330864
Diffstat (limited to 'stand/efi/loader/arch')
-rw-r--r-- | stand/efi/loader/arch/arm/exec.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/stand/efi/loader/arch/arm/exec.c b/stand/efi/loader/arch/arm/exec.c index 83d3f2b1140a..2de99a09849f 100644 --- a/stand/efi/loader/arch/arm/exec.c +++ b/stand/efi/loader/arch/arm/exec.c @@ -47,7 +47,7 @@ extern vm_offset_t md_load(char *, vm_offset_t *); extern int bi_load(char *, vm_offset_t *, vm_offset_t *); static int -__elfN(arm_load)(char *filename, u_int64_t dest, +__elfN(arm_load)(char *filename, uint64_t dest, struct preloaded_file **result) { int r; |