From 3d4d8e61f0547d65cd96e48d0be89ecba8ca85cc Mon Sep 17 00:00:00 2001 From: YAMAMOTO Takashi Date: Tue, 2 Jul 2024 16:32:38 +0900 Subject: [PATCH] aot-analyzer: Fix a few printf formats (#3590) --- test-tools/aot-analyzer/src/main.cc | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test-tools/aot-analyzer/src/main.cc b/test-tools/aot-analyzer/src/main.cc index 44e578547..f42e9217b 100644 --- a/test-tools/aot-analyzer/src/main.cc +++ b/test-tools/aot-analyzer/src/main.cc @@ -169,8 +169,8 @@ DumpInfo(AoTFile *aot) aot->GetExectuionMachineName(target_info.e_machine).c_str()); printf("Exectuion version: %u\n", target_info.e_version); printf("Exectuion flags: %u\n", target_info.e_flags); - printf("Feature flags: %ld\n", target_info.feature_flags); - printf("Reserved: %ld\n", target_info.reserved); + printf("Feature flags: %" PRId64 "\n", target_info.feature_flags); + printf("Reserved: %" PRId64 "\n", target_info.reserved); printf("Arch: %s\n", target_info.arch); }