mirror of
https://github.com/torvalds/linux.git
synced 2024-11-01 04:53:36 +01:00
Update socket.c
Improved the readability of the error message.
This commit is contained in:
parent
dcdbe33add
commit
2779420295
1 changed files with 2 additions and 2 deletions
|
@ -70,8 +70,8 @@ static int run_tests(void)
|
|||
if (s->expect < 0) {
|
||||
strerror_r(errno, err_string1, ERR_STRING_SZ);
|
||||
|
||||
fprintf(stderr, "socket(%d, %d, %d) expected "
|
||||
"success got err (%s)\n",
|
||||
fprintf(stderr, "Socket(%d, %d, %d) expected "
|
||||
"success! Instead got error: (%s)\n",
|
||||
s->domain, s->type, s->protocol,
|
||||
err_string1);
|
||||
|
||||
|
|
Loading…
Reference in a new issue