Do not assume that std::int64_t is long int #1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Use PRId64 macro to printf-format an int64_t value.
This fixes
storage/perfschema/unittest/pfs-t.cc:2667:8: error: format specifies type 'long' but the argument has type 'int64_t' (aka 'long long') [-Werror,-Wformat]
2666 | ok(cpu_stat.m_delay_start == delay_start, "delay start %ld",
| ~~~
| %lld
2667 | cpu_stat.m_delay_start);
| ^~~~~~~~~~~~~~~~~~~~~~
storage/perfschema/unittest/pfs-t.cc:2669:8: error: format specifies type 'long' but the argument has type 'int64_t' (aka 'long long') [-Werror,-Wformat]
2668 | ok(cpu_stat.m_delay_total_ns == delay_total, "delay total %ld",
| ~~~
| %lld
2669 | cpu_stat.m_delay_total_ns);
| ^~~~~~~~~~~~~~~~~~~~~~~~~
storage/perfschema/unittest/pfs-t.cc:2671:8: error: format specifies type 'long' but the argument has type 'int64_t' (aka 'long long') [-Werror,-Wformat]
2670 | ok(cpu_stat.m_cpu_start == quantum_start, "cpu start %ld",
| ~~~
| %lld
2671 | cpu_stat.m_cpu_start);
| ^~~~~~~~~~~~~~~~~~~~
storage/perfschema/unittest/pfs-t.cc:2673:8: error: format specifies type 'long' but the argument has type 'int64_t' (aka 'long long') [-Werror,-Wformat]
2672 | ok(cpu_stat.m_cpu_total_ns == cpu_total, "cpu total %ld",
| ~~~
| %lld
2673 | cpu_stat.m_cpu_total_ns);
| ^~~~~~~~~~~~~~~~~~~~~~~
Squash with b4f911b