From: Michael Jeanson Date: Tue, 15 May 2018 20:19:49 +0000 (-0400) Subject: Port: fix format warnings on Cygwin X-Git-Url: http://git.efficios.com/?a=commitdiff_plain;h=9b9f9f94821c0f12430f3998597568e6ad0b5a6a;hp=9b9f9f94821c0f12430f3998597568e6ad0b5a6a;p=lttng-tools.git Port: fix format warnings on Cygwin On Cygwin, be64toh() returns a "long long unsigned int" while the format specifier PRIu64 expects a "long unsigned int". Both types are 64bits integers, just cast the result to uint64_t to silence the warnings. Signed-off-by: Michael Jeanson Signed-off-by: Jérémie Galarneau ---