fixed typo (?)

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@3621 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Harco de Hilster
1999-09-12 18:49:59 +00:00
parent 8ec2b48446
commit 90bb2919de

View File

@@ -726,9 +726,9 @@ void _GSocket_Configure_Callbacks(GSocket *socket)
int count; int count;
for (count=0;count<GSOCK_MAX_EVENT;count++) { for (count=0;count<GSOCK_MAX_EVENT;count++) {
if ((socket->m_cbacks[count]) != NULL) { if ((socket->m_cbacks[count]) != NULL) {
GSocket_Enable(socket, count); _GSocket_Enable(socket, count);
} else { } else {
GSocket_Disable(socket, count); _GSocket_Disable(socket, count);
} }
} }
} }