| Index: fusl/src/network/herror.c
|
| diff --git a/fusl/src/network/herror.c b/fusl/src/network/herror.c
|
| index 65f25ff3f45b6b0ce07ec61e8a8d54280b96817f..2261d22be54da046fb0076173b22729df72a37cd 100644
|
| --- a/fusl/src/network/herror.c
|
| +++ b/fusl/src/network/herror.c
|
| @@ -2,7 +2,7 @@
|
| #include <stdio.h>
|
| #include <netdb.h>
|
|
|
| -void herror(const char *msg)
|
| -{
|
| - fprintf(stderr, "%s%s%s", msg?msg:"", msg?": ":"", hstrerror(h_errno));
|
| +void herror(const char* msg) {
|
| + fprintf(stderr, "%s%s%s", msg ? msg : "", msg ? ": " : "",
|
| + hstrerror(h_errno));
|
| }
|
|
|