diff options
author | Shuah Khan <skhan@linuxfoundation.org> | 2021-09-17 22:26:14 +0300 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-09-19 15:15:19 +0300 |
commit | 48514a22333099b93c33ea1c7c97dad3f7a611ce (patch) | |
tree | 04d08d1a2539359875c7bf7530bc4d18f18a97e3 /drivers/net | |
parent | 029497e66bdc762e001880e4c85a91f35a54b1e2 (diff) | |
download | linux-48514a22333099b93c33ea1c7c97dad3f7a611ce.tar.xz |
selftests: net: af_unix: Fix incorrect args in test result msg
Fix the args to fprintf(). Splitting the message ends up passing
incorrect arg for "sigurg %d" and an extra arg overall. The test
result message ends up incorrect.
test_unix_oob.c: In function ‘main’:
test_unix_oob.c:274:43: warning: format ‘%d’ expects argument of type ‘int’, but argument 3 has type ‘char *’ [-Wformat=]
274 | fprintf(stderr, "Test 3 failed, sigurg %d len %d OOB %c ",
| ~^
| |
| int
| %s
275 | "atmark %d\n", signal_recvd, len, oob, atmark);
| ~~~~~~~~~~~~~
| |
| char *
test_unix_oob.c:274:19: warning: too many arguments for format [-Wformat-extra-args]
274 | fprintf(stderr, "Test 3 failed, sigurg %d len %d OOB %c ",
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net')
0 files changed, 0 insertions, 0 deletions