[Python-checkins] CVS: python/dist/src/Objects unicodeobject.c,2.85,2.86

Tim Peters tim_one@users.sourceforge.net
Fri, 20 Apr 2001 19:46:13 -0700


Update of /cvsroot/python/python/dist/src/Objects
In directory usw-pr-cvs1:/tmp/cvs-serv9515/python/dist/src/Objects

Modified Files:
	unicodeobject.c 
Log Message:
SF but #417587: compiler warnings compiling 2.1.
Repaired *some* of the SGI compiler warnings Sjoerd Mullender reported.


Index: unicodeobject.c
===================================================================
RCS file: /cvsroot/python/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.85
retrieving revision 2.86
diff -C2 -r2.85 -r2.86
*** unicodeobject.c	2001/04/19 21:55:14	2.85
--- unicodeobject.c	2001/04/21 02:46:11	2.86
***************
*** 672,681 ****
              errmsg = "unexpected code byte";
  	    goto utf8Error;
-             break;
  
          case 1:
              errmsg = "internal error";
  	    goto utf8Error;
-             break;
  
          case 2:
--- 672,679 ----
***************
*** 741,745 ****
              errmsg = "unsupported Unicode code range";
  	    goto utf8Error;
- 	    break;
          }
          s += n;
--- 739,742 ----