diff options
author | Sjoerd Mullender <sjoerd@acm.org> | 2001-08-30 14:15:38 (GMT) |
---|---|---|
committer | Sjoerd Mullender <sjoerd@acm.org> | 2001-08-30 14:15:38 (GMT) |
commit | 6f848c175f6fbf9a0d7e1e2c54f283ea50be0074 (patch) | |
tree | 04f52fb8255c65a55715adce9075e9aa240f1c21 /Modules/getaddrinfo.c | |
parent | a2c2ae62df16b2a6d4b7fe14d0aaff5e09f7035d (diff) | |
download | cpython-6f848c175f6fbf9a0d7e1e2c54f283ea50be0074.zip cpython-6f848c175f6fbf9a0d7e1e2c54f283ea50be0074.tar.gz cpython-6f848c175f6fbf9a0d7e1e2c54f283ea50be0074.tar.bz2 |
Removed an unreachable break statement to silence SGI compiler.
Diffstat (limited to 'Modules/getaddrinfo.c')
-rw-r--r-- | Modules/getaddrinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/getaddrinfo.c b/Modules/getaddrinfo.c index 67e6ce1..3745c43 100644 --- a/Modules/getaddrinfo.c +++ b/Modules/getaddrinfo.c @@ -330,7 +330,7 @@ getaddrinfo(hostname, servname, hints, res) break; default: ERR(EAI_SOCKTYPE); - break; + /* unreachable */ } } |