Left-aligned preprocessor directives and changed C++ comments to C

comments.
This commit is contained in:
Guido van Rossum 1997-12-02 20:37:32 +00:00
parent c5a0f532e7
commit 32c575da0a

View file

@ -1466,13 +1466,13 @@ OS2init()
if (rc == 0) {
atexit(OS2cleanup);
return 1; // Indicate Success
return 1; /* Indicate Success */
}
sprintf(reason, "OS/2 TCP/IP Error# %d", sock_errno());
PyErr_SetString(PyExc_ImportError, reason);
return 0; // Indicate Failure
return 0; /* Indicate Failure */
}
#endif /* PYOS_OS2 */