tests: fix incorrect size_t format in benchmark-crypto
authorPhilippe Mathieu-Daudé <f4bug@amsat.org>
Mon, 28 Aug 2017 11:37:37 +0000 (08:37 -0300)
committerDaniel P. Berrange <berrange@redhat.com>
Mon, 4 Sep 2017 09:45:19 +0000 (10:45 +0100)
commit8c0a6dc96cd14c48da4a61fe35431f36d6e6e467
tree17ebdef4a7ddf8c82d4a2ffec7c9ac69a3fc8a00
parent32f0f68bb77289b75a82925f712bb52e16eac3ba
tests: fix incorrect size_t format in benchmark-crypto

  $ make check-speed
  tests/benchmark-crypto-hash.c: In function 'test_hash_speed':
  tests/benchmark-crypto-hash.c:44:5: error: format '%ld' expects argument of type 'long int', but argument 2 has type 'size_t' [-Werror=format=]
       g_print("Testing chunk_size %ld bytes ", chunk_size);
       ^
  tests/benchmark-crypto-hash.c: In function 'main':
  tests/benchmark-crypto-hash.c:62:9: error: format '%lu' expects argument of type 'long unsigned int', but argument 4 has type 'size_t' [-Werror=format=]
           snprintf(name, sizeof(name), "/crypto/hash/speed-%lu", i);
           ^
  cc1: all warnings being treated as errors
  rules.mak:66: recipe for target 'tests/benchmark-crypto-hash.o' failed
  make: *** [tests/benchmark-crypto-hash.o] Error 1

Reviewed-by: Longpeng(Mike) <longpeng@huawei.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Signed-off-by: Daniel P. Berrange <berrange@redhat.com>
tests/benchmark-crypto-cipher.c
tests/benchmark-crypto-hash.c
tests/benchmark-crypto-hmac.c