[Python-checkins] CVS: python/dist/src/Modules getaddrinfo.c,1.6,1.7
Sjoerd Mullender
sjoerd@users.sourceforge.net
2001年8月30日 07:15:40 -0700
Update of /cvsroot/python/python/dist/src/Modules
In directory usw-pr-cvs1:/tmp/cvs-serv7012
Modified Files:
getaddrinfo.c
Log Message:
Removed an unreachable break statement to silence SGI compiler.
Index: getaddrinfo.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Modules/getaddrinfo.c,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** getaddrinfo.c 2001年07月24日 06:33:08 1.6
--- getaddrinfo.c 2001年08月30日 14:15:38 1.7
***************
*** 331,335 ****
default:
ERR(EAI_SOCKTYPE);
! break;
}
}
--- 331,335 ----
default:
ERR(EAI_SOCKTYPE);
! /* unreachable */
}
}