1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-22 08:08:50 -05:00

Tor Arntsen spotted this mistake

This commit is contained in:
Daniel Stenberg 2006-11-13 13:48:55 +00:00
parent 68d4b77d44
commit e264f699d4

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