White space changes to improve readability.

This commit is contained in:
wtc%netscape.com 2002-03-10 06:43:11 +00:00
Родитель b996532db4
Коммит 1eea6f5615
1 изменённых файлов: 8 добавлений и 8 удалений

Просмотреть файл

@ -114,22 +114,22 @@ typedef struct _MDSocketCallerInfo {
} _MDSocketCallerInfo; } _MDSocketCallerInfo;
struct _MDFileDesc { struct _MDFileDesc {
PRInt32 osfd; PRInt32 osfd;
PRPackedBool orderlyDisconnect; PRPackedBool orderlyDisconnect;
PRPackedBool readReady; PRPackedBool readReady;
PRPackedBool writeReady; PRPackedBool writeReady;
PRPackedBool exceptReady; PRPackedBool exceptReady;
PRLock * miscLock; PRLock * miscLock;
/* Server sockets: listen bit tells the notifier func what to do */ /* Server sockets: listen bit tells the notifier func what to do */
PRBool doListen; PRBool doListen;
/* stored error for non-blocking connects, as a Unix-style error code */ /* stored error for non-blocking connects, as a Unix-style error code */
OTReason disconnectError; OTReason disconnectError;
_MDSocketCallerInfo misc; _MDSocketCallerInfo misc;
_MDSocketCallerInfo read; _MDSocketCallerInfo read;
_MDSocketCallerInfo write; _MDSocketCallerInfo write;
}; };
/* /*