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

Guido van Rossum python-dev@python.org
Wed, 3 May 2000 19:58:32 -0400 (EDT)


Update of /projects/cvsroot/python/dist/src/Objects
In directory eric:/projects/python/develop/guido/src/Objects

Modified Files:
	unicodeobject.c 
Log Message:
Fix warning detected by VC++ on assignment of Py_UNICODE to char.


Index: unicodeobject.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Objects/unicodeobject.c,v
retrieving revision 2.16
retrieving revision 2.17
diff -C2 -r2.16 -r2.17
*** unicodeobject.c	2000/05/03 23:44:36	2.16
--- unicodeobject.c	2000/05/03 23:58:29	2.17
***************
*** 2014,2018 ****
  	}
  	if (0 < ch && ch < 256) {
! 	    *output++ = ch;
  	    continue;
  	}
--- 2014,2018 ----
  	}
  	if (0 < ch && ch < 256) {
! 	    *output++ = (char)ch;
  	    continue;
  	}