mirror of
https://github.com/python/cpython.git
synced 2025-10-15 11:22:18 +00:00
Fix incompatible assignment warning from previous checkin.
This commit is contained in:
parent
7f401ef73d
commit
7464b43e41
1 changed files with 2 additions and 1 deletions
|
@ -887,7 +887,8 @@ PyMarshal_ReadShortFromFile(FILE *fp)
|
||||||
RFILE rf;
|
RFILE rf;
|
||||||
assert(fp);
|
assert(fp);
|
||||||
rf.fp = fp;
|
rf.fp = fp;
|
||||||
rf.strings = rf.end = rf.ptr = NULL;
|
rf.strings = NULL;
|
||||||
|
rf.end = rf.ptr = NULL;
|
||||||
return r_short(&rf);
|
return r_short(&rf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue