memfd_test: Add missing argument to printf()
Add a missing path argument buf to printf() Signed-off-by: Pranith Kumar <bobby.prani@gmail.com> Reviewed-by: David Herrmann <dh.herrmann@gmail.com> Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
This commit is contained in:
Родитель
57e67900d4
Коммит
2ed3692837
|
@ -203,7 +203,7 @@ static void mfd_fail_open(int fd, int flags, mode_t mode)
|
|||
sprintf(buf, "/proc/self/fd/%d", fd);
|
||||
r = open(buf, flags, mode);
|
||||
if (r >= 0) {
|
||||
printf("open(%s) didn't fail as expected\n");
|
||||
printf("open(%s) didn't fail as expected\n", buf);
|
||||
abort();
|
||||
}
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче