[Python-checkins] CVS: python/dist/src/Python ceval.c,2.177,2.178

Guido van Rossum python-dev@python.org
Wed, 3 May 2000 20:55:20 -0400 (EDT)


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

Modified Files:
	ceval.c 
Log Message:
Add useless 'return 1' to prtrace() to shut up VC++.


Index: ceval.c
===================================================================
RCS file: /projects/cvsroot/python/dist/src/Python/ceval.c,v
retrieving revision 2.177
retrieving revision 2.178
diff -C2 -r2.177 -r2.178
*** ceval.c	2000/05/03 23:44:38	2.177
--- ceval.c	2000/05/04 00:55:17	2.178
***************
*** 2177,2180 ****
--- 2177,2181 ----
  		PyErr_Clear(); /* Don't know what else to do */
  	printf("\n");
+ 	return 1;
  }
  #endif