erst: drop cast to long long
authorMichael S. Tsirkin <mst@redhat.com>
Sun, 6 Feb 2022 09:35:57 +0000 (04:35 -0500)
committerThomas Huth <thuth@redhat.com>
Mon, 21 Feb 2022 09:13:23 +0000 (10:13 +0100)
The way to print uint64_t is with PRIx64, not with
a cast to long long.

Message-Id: <20220206093547.1282513-1-mst@redhat.com>
Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
tests/qtest/erst-test.c

index c6a0ae40132e0356c6e53943198b53cd8cf99d9e..f94cd8dd8e052cd0f0fb8ef1ff4f395bf795d78f 100644 (file)
@@ -75,7 +75,7 @@ static inline uint64_t in_reg64(ERSTState *s, unsigned reg)
     uint64_t res;
 
     res = qpci_io_readq(s->dev, s->reg_bar, reg);
-    g_test_message("*%s -> %016llx", name, (unsigned long long)res);
+    g_test_message("*%s -> %016" PRIx64, name, res);
 
     return res;
 }