Tor Arntsen spotted this mistake

This commit is contained in:
Daniel Stenberg 2006-11-13 13:48:55 +00:00
parent 68d4b77d44
commit e264f699d4
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}