0
0
mirror of https://github.com/python/cpython.git synced 2024-12-01 11:15:56 +01:00

Removed an unreachable break statement to silence SGI compiler.

This commit is contained in:
Sjoerd Mullender 2001-08-30 14:15:38 +00:00
parent a2c2ae62df
commit 6f848c175f

View File

@ -330,7 +330,7 @@ getaddrinfo(hostname, servname, hints, res)
break;
default:
ERR(EAI_SOCKTYPE);
break;
/* unreachable */
}
}