tool/metrics: fix warnings for PRIx32 and PRIu32

This commit is contained in:
Matthias Ringwald 2024-04-17 15:53:08 +02:00
parent 29502c9b62
commit e13b2e7c61

View File

@ -32,8 +32,8 @@ SOFTWARE.
#if !defined __INTTYPES_H
#define __INTTYPES_H
// assume 32-bit architecture
#define PRIu32 "I32u"
#define PRIx32 "I32x"
// assume at least 32-bit architecture
#define PRIu32 "u"
#define PRIx32 "x"
#endif