Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix verbose of check_clocks for 32 bit systems
On 32 bit systems uint64_t is long long unsigned int and thus requires %llu in printf to prevent garbled output. Use PRIu64/PRId64 to handle this correctly for both 32 bit and 64 bit systems. Signed-off-by: Florian Kauer <[email protected]>
- Loading branch information