Commit e264f699 authored by Daniel Stenberg's avatar Daniel Stenberg
Browse files

Tor Arntsen spotted this mistake

parent 68d4b77d
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;
    }