fix fe-text on win32
It still throws out some errors
This commit is contained in:
parent
12f0d0b304
commit
69e1ed4278
@ -430,7 +430,14 @@ fe_input_add (int sok, int flags, void *func, void *data)
|
||||
int tag, type = 0;
|
||||
GIOChannel *channel;
|
||||
|
||||
#ifdef G_OS_WIN32
|
||||
if (flags & FIA_FD)
|
||||
channel = g_io_channel_win32_new_fd (sok);
|
||||
else
|
||||
channel = g_io_channel_win32_new_socket (sok);
|
||||
#else
|
||||
channel = g_io_channel_unix_new (sok);
|
||||
#endif
|
||||
|
||||
if (flags & FIA_READ)
|
||||
type |= G_IO_IN | G_IO_HUP | G_IO_ERR;
|
||||
|
Loading…
Reference in New Issue
Block a user