Fix duplicated case value for mingw runtimes defining EOVERLFOW as EFBIG

This commit is contained in:
Andoni Morales Alastruey 2012-11-28 16:34:18 +01:00 committed by Sebastian Dröge
parent cb0ed84d40
commit 97385dbbe8

View File

@ -824,9 +824,11 @@ g_io_channel_error_from_errno (gint en)
#endif
#ifdef EOVERFLOW
#if EOVERFLOW != EFBIG
case EOVERFLOW:
return G_IO_CHANNEL_ERROR_OVERFLOW;
#endif
#endif
#ifdef EPIPE
case EPIPE: