diff options
author | Daniel Stenberg <daniel@haxx.se> | 2006-11-13 13:48:55 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2006-11-13 13:48:55 +0000 |
commit | e264f699d4da5ffbe025bbf83e7981fd9078b660 (patch) | |
tree | 33d83c19164ac2e72de0f3dd1f5b04b6babeb08a /tests | |
parent | 68d4b77d44960c83331bbe2b8f5a3a85cbd509f0 (diff) |
Tor Arntsen spotted this mistake
Diffstat (limited to 'tests')
-rw-r--r-- | tests/server/sws.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/server/sws.c b/tests/server/sws.c index f9fcd6ca5..9e63e507c 100644 --- a/tests/server/sws.c +++ b/tests/server/sws.c @@ -865,7 +865,7 @@ int main(int argc, char *argv[]) msgsock = accept(sock, NULL, NULL); if (CURL_SOCKET_BAD == msgsock) { - printf("MAJOR ERROR: accept() failed with error: &d\n", errno); + printf("MAJOR ERROR: accept() failed with error: %d\n", errno); break; } |