Commit c0a50d80 authored by Davis King's avatar Davis King

Fixed compile time bug.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403806
parent 76eaef5d
......@@ -133,8 +133,7 @@ namespace dlib
- returns a string that names the contents of the type member.
!*/
{
if (type == EOTHER) return "EOTHER";
else if ( type == EPORT_IN_USE) return "EPORT_IN_USE";
if ( type == EPORT_IN_USE) return "EPORT_IN_USE";
else if ( type == ETIMEOUT) return "ETIMEOUT";
else if ( type == ECONNECTION) return "ECONNECTION";
else if ( type == ELISTENER) return "ELISTENER";
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment