commit | 7464b43e41acb08f02f3b7ec2db12747737952d1 | [log] [tgz] |
---|---|---|
author | Thomas Wouters <thomas@python.org> | Wed Mar 01 22:34:09 2006 +0000 |
committer | Thomas Wouters <thomas@python.org> | Wed Mar 01 22:34:09 2006 +0000 |
tree | fc866298ff2b0d3f50ba205b8f1991cc25be7793 | |
parent | 7f401ef73dbdfd3b144ae25be62e2c139d699916 [diff] |
Fix incompatible assignment warning from previous checkin.
diff --git a/Python/marshal.c b/Python/marshal.c index b61436b..585c1eb 100644 --- a/Python/marshal.c +++ b/Python/marshal.c
@@ -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); }