From: Thomas Wouters Date: Wed, 1 Mar 2006 22:34:09 +0000 (+0000) Subject: Fix incompatible assignment warning from previous checkin. X-Git-Tag: v2.5a0~420 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=7464b43e41acb08f02f3b7ec2db12747737952d1;p=thirdparty%2FPython%2Fcpython.git Fix incompatible assignment warning from previous checkin. --- diff --git a/Python/marshal.c b/Python/marshal.c index b61436b72e2a..585c1ebd44de 100644 --- a/Python/marshal.c +++ b/Python/marshal.c @@ -887,7 +887,8 @@ PyMarshal_ReadShortFromFile(FILE *fp) 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); }