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

Guido van Rossum python-dev@python.org
Wed, 5 Apr 2000 17:29:52 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Objects
In directory eric:/home/guido/hp/mal/py-patched/Objects

Modified Files:
	unicodeobject.c 
Log Message:
Fredrik Lundh: eliminate a MSVC compiler warning.


Index: unicodeobject.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.6
retrieving revision 2.7
diff -C2 -r2.6 -r2.7
*** unicodeobject.c	2000/04/05 20:11:20	2.6
--- unicodeobject.c	2000/04/05 21:29:50	2.7
***************
*** 1960,1964 ****
  	}
  	if (0 < ch < 256) {
! 	    *output++ = ch;
  	    continue;
  	}
--- 1960,1964 ----
  	}
  	if (0 < ch < 256) {
! 	    *output++ = (char) ch;
  	    continue;
  	}