mirror of
https://github.com/bluekitchen/btstack.git
synced 2025-02-20 18:40:31 +00:00
tool/metrics: fix warnings for PRIx32 and PRIu32
This commit is contained in:
parent
29502c9b62
commit
e13b2e7c61
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user