Kaydet (Commit) ccb1f8cb authored tarafından Victor Stinner's avatar Victor Stinner

getpathp.c: fix compiler warning

wcsnlen_s() result type is size_t.
üst 0aed3a4e
......@@ -135,7 +135,7 @@ exists(wchar_t *filename)
static int
ismodule(wchar_t *filename, int update_filename) /* Is module -- check for .pyc/.pyo too */
{
int n;
size_t n;
if (exists(filename))
return 1;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment