aot-analyzer: Fix a few printf formats (#3590)

This commit is contained in:
YAMAMOTO Takashi 2024-07-02 16:32:38 +09:00 committed by GitHub
parent 212d830eb7
commit 3d4d8e61f0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -169,8 +169,8 @@ DumpInfo(AoTFile *aot)
aot->GetExectuionMachineName(target_info.e_machine).c_str()); aot->GetExectuionMachineName(target_info.e_machine).c_str());
printf("Exectuion version: %u\n", target_info.e_version); printf("Exectuion version: %u\n", target_info.e_version);
printf("Exectuion flags: %u\n", target_info.e_flags); printf("Exectuion flags: %u\n", target_info.e_flags);
printf("Feature flags: %ld\n", target_info.feature_flags); printf("Feature flags: %" PRId64 "\n", target_info.feature_flags);
printf("Reserved: %ld\n", target_info.reserved); printf("Reserved: %" PRId64 "\n", target_info.reserved);
printf("Arch: %s\n", target_info.arch); printf("Arch: %s\n", target_info.arch);
} }