Fix incompatible assignment warning from previous checkin.

This commit is contained in:
Thomas Wouters 2006-03-01 22:34:09 +00:00
parent 7f401ef73d
commit 7464b43e41
1 changed files with 2 additions and 1 deletions

View File

@ -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);
}