mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 04:53:36 +01:00
Fix readability of socket err
socket {} expected success "but" got err {}
This commit is contained in:
parent
b1da3acc78
commit
fd310e0230
1 changed files with 1 additions and 1 deletions
|
@ -72,7 +72,7 @@ static int run_tests(void)
|
|||
strerror_r(errno, err_string1, ERR_STRING_SZ);
|
||||
|
||||
fprintf(stderr, "socket(%d, %d, %d) expected "
|
||||
"success got err (%s)\n",
|
||||
"success but got err (%s)\n",
|
||||
s->domain, s->type, s->protocol,
|
||||
err_string1);
|
||||
|
||||
|
|
Loading…
Reference in a new issue