]> asedeno.scripts.mit.edu Git - linux.git/commit
selftests: memfd_test.c: fix compilation warning.
authorLei Yang <Lei.Yang@windriver.com>
Sun, 5 Nov 2017 10:56:40 +0000 (18:56 +0800)
committerShuah Khan <shuahkh@osg.samsung.com>
Wed, 15 Nov 2017 15:07:53 +0000 (08:07 -0700)
commit7d33d2b5b8581ed9f7b2ad93156cde223df718dc
tree0c1ee46fb2beff30de2913524c5475a449c3423b
parent42534b1f58e04a5a6d245d4a8d25f7eb5fd79c7a
selftests: memfd_test.c: fix compilation warning.

Replace '%d' by '%zu' to fix the following compilation warning.

memfd_test.c:517:3: warning: format ‘%d’ expects argument of
type ‘int’,but argument 2 has type ‘size_t’ [-Wformat=]
   printf("malloc(%d) failed: %m\n", mfd_def_size * 8);
   ^
memfd_test.c: In function ‘mfd_fail_grow_write’:
memfd_test.c:537:3: warning: format ‘%d’ expects argument
of type ‘int’,but argument 2 has type ‘size_t’ [-Wformat=]
   printf("malloc(%d) failed: %m\n", mfd_def_size * 8);

Signed-off-by: Lei Yang <Lei.Yang@windriver.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
tools/testing/selftests/memfd/memfd_test.c