[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [Xen-devel] [PATCH v10 01/19] xenctx: Correct FMT_??B_WORD for arm64.
On 04/03/14 15:06, Don Slutz wrote: From: Ian Campbell <ian.campbell@xxxxxxxxxx> These should all be unsigned long long to match various variables used in the code, same as x86_64. Signed-off-by: Ian Campbell <ian.campbell@xxxxxxxxxx> I think I can add: Reviewed-by: Don Slutz <dslutz@xxxxxxxxxxx> And it I may also have forgotten to add: Signed-off-by: Don Slutz <dslutz@xxxxxxxxxxx> -Don Slutz --- tools/xentrace/xenctx.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/xentrace/xenctx.c b/tools/xentrace/xenctx.c index 7275a00..47712ab 100644 --- a/tools/xentrace/xenctx.c +++ b/tools/xentrace/xenctx.c @@ -57,8 +57,8 @@ typedef uint64_t guest_word_t; #elif defined(__aarch64__) #define NO_TRANSLATION typedef uint64_t guest_word_t; -#define FMT_32B_WORD "%08lx" -#define FMT_64B_WORD "%016lx" +#define FMT_32B_WORD "%08llx" +#define FMT_64B_WORD "%016llx" #endifstruct symbol { _______________________________________________ Xen-devel mailing list Xen-devel@xxxxxxxxxxxxx http://lists.xen.org/xen-devel
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |