mirror of
https://github.com/python/cpython.git
synced 2025-08-03 08:34:29 +00:00
Changed all (hopefully) uses of unsigned 16 bit value to use H format specifier, now that h is signed-only.
This commit is contained in:
parent
89d017d072
commit
0b13e7c153
23 changed files with 86 additions and 86 deletions
|
@ -881,7 +881,7 @@ mfs_FindFolder(self, args)
|
|||
short refnum;
|
||||
long dirid;
|
||||
|
||||
if (!PyArg_ParseTuple(args, "hO&i", &where, PyMac_GetOSType, &which, &create) )
|
||||
if (!PyArg_ParseTuple(args, "HO&i", &where, PyMac_GetOSType, &which, &create) )
|
||||
return NULL;
|
||||
err = FindFolder(where, which, (Boolean)create, &refnum, &dirid);
|
||||
if ( err ) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue