| Index: runtime/szrt_profiler.c
|
| diff --git a/runtime/szrt_profiler.c b/runtime/szrt_profiler.c
|
| index e31692ea6d6ee5c2b80ca910a6a6648c08f23c8c..34a647ac2ec6bb584c4509fa0edf855717243942 100644
|
| --- a/runtime/szrt_profiler.c
|
| +++ b/runtime/szrt_profiler.c
|
| @@ -1,3 +1,4 @@
|
| +#include <inttypes.h>
|
| #include <stdint.h>
|
| #include <stdio.h>
|
|
|
| @@ -53,7 +54,7 @@ void __Sz_profile_summary() {
|
| printf("%s", SubzeroLogo);
|
| for (const struct BlockProfileInfo **curr = &__Sz_block_profile_info;
|
| *curr != NULL; ++curr) {
|
| - printf("%lld\t%s\n", (*curr)->Counter, (*curr)->BlockName);
|
| + printf("%" PRIu64 "\t%s\n", (*curr)->Counter, (*curr)->BlockName);
|
| }
|
| fflush(stdout);
|
| }
|
|
|