1
0
mirror of https://gitlab.gnome.org/GNOME/glib.git synced 2025-03-31 04:43:06 +02:00

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

@ -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: