[Python-checkins] r42751 - python/trunk/Python/marshal.c

thomas.wouters python-checkins at python.org
Wed Mar 1 23:34:10 CET 2006


Author: thomas.wouters
Date: Wed Mar  1 23:34:09 2006
New Revision: 42751

Modified:
   python/trunk/Python/marshal.c
Log:

Fix incompatible assignment warning from previous checkin.



Modified: python/trunk/Python/marshal.c
==============================================================================
--- python/trunk/Python/marshal.c	(original)
+++ python/trunk/Python/marshal.c	Wed Mar  1 23:34:09 2006
@@ -887,7 +887,8 @@
 	RFILE rf;
 	assert(fp);
 	rf.fp = fp;
-	rf.strings = rf.end = rf.ptr = NULL;
+	rf.strings = NULL;
+	rf.end = rf.ptr = NULL;
 	return r_short(&rf);
 }
 


More information about the Python-checkins mailing list