From: Michael Jeanson Date: Tue, 15 May 2018 20:19:49 +0000 (-0400) Subject: Port: fix format warnings on Cygwin X-Git-Tag: v2.9.10~11 X-Git-Url: http://git.liburcu.org/?a=commitdiff_plain;h=f8fc08d258be3b82ddce66af0c39f9222656ff42;hp=f8fc08d258be3b82ddce66af0c39f9222656ff42;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 ---