app/test: fix printf format
authorMichael Qiu <michael.qiu@intel.com>
Fri, 6 Mar 2015 03:53:32 +0000 (11:53 +0800)
committerThomas Monjalon <thomas.monjalon@6wind.com>
Mon, 9 Mar 2015 17:07:43 +0000 (18:07 +0100)
commit4d2c67be57d010f8b6a1ba0602a09808576260ef
tree03d80b03092053cdd48ec87ae8fa2477f4257067
parent12fa4a00788d8153f4f478a0d7aef13df8c7833c
app/test: fix printf format

test_hash.c: In function ‘test_crc32_hash_alg_equiv’:
error: format ‘%lu’ expects argument of type ‘long unsigned int’,
but argument 2 has type ‘size_t’ [-Werror=format]

According to C99, for size_t type should use format "%zu"

Signed-off-by: Michael Qiu <michael.qiu@intel.com>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
app/test/test_hash.c