Looper: missing cinttypes when debugging poll/callbacks

When enabling DEBUG_POLL_AND_WAKE or DEBUG_CALLBACKS, compiler complains
for the undefined PRI* fprintf format constants.
Fix by including the missing cinttypes.

Test: m
Bug: none
Change-Id: I0a7b5b45bd274eefa9644cba491a8dc28f1992ff
This commit is contained in:
Alessio Balsini 2019-05-11 14:29:28 +01:00
parent d203a508ff
commit 1406207e67

View file

@ -14,7 +14,9 @@
#define DEBUG_CALLBACKS 0
#include <utils/Looper.h>
#include <sys/eventfd.h>
#include <cinttypes>
namespace android {