From 923c05f17fbe84d4237085fabca2eeef1874b59b Mon Sep 17 00:00:00 2001 From: liuhaitao Date: Wed, 4 Mar 2020 14:38:01 +0800 Subject: [PATCH] arch/x86_64: fix two typo errors to pass build Signed-off-by: liuhaitao --- arch/x86_64/src/intel64/up_map_region.c | 2 +- arch/x86_64/src/intel64/up_regdump.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/x86_64/src/intel64/up_map_region.c b/arch/x86_64/src/intel64/up_map_region.c index a3efa9b291..2ee7a0c71e 100644 --- a/arch/x86_64/src/intel64/up_map_region.c +++ b/arch/x86_64/src/intel64/up_map_region.c @@ -57,7 +57,7 @@ int up_map_region(void *base, int size, int flags) /* Increase size if the base address is rounded off */ size += (uint64_t)base - bb; - uint64_t num_of_pages = (size + PAGE_SIZE - 1) / PAGE_SIZE; + num_of_pages = (size + PAGE_SIZE - 1) / PAGE_SIZE; if (bb > 0xffffffff) { diff --git a/arch/x86_64/src/intel64/up_regdump.c b/arch/x86_64/src/intel64/up_regdump.c index 942b4326ea..904f38e8fb 100644 --- a/arch/x86_64/src/intel64/up_regdump.c +++ b/arch/x86_64/src/intel64/up_regdump.c @@ -37,7 +37,7 @@ * Name: up_registerdump ****************************************************************************/ -void print_mem(void *sp, size_t size +void print_mem(void *sp, size_t size) { char buf[9]; int i;