From 582acece2e0db447904b3f8f8f1d2acf36834158 Mon Sep 17 00:00:00 2001 From: Guido van Rossum Date: Wed, 28 Jun 2000 22:07:35 +0000 Subject: Trent Mick's Win64 changes: size_t vs. int or long; also some overflow tests. --- Python/dynload_win.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Python/dynload_win.c') diff --git a/Python/dynload_win.c b/Python/dynload_win.c index 08a2a895fe..7506c41f6c 100644 --- a/Python/dynload_win.c +++ b/Python/dynload_win.c @@ -104,7 +104,7 @@ dl_funcptr _PyImport_GetDynLoadFunc(const char *fqname, const char *shortname, "DLL load failed with error code %d", errorCode); } else { - int len; + size_t len; /* For some reason a \r\n is appended to the text */ if (theLength >= 2 && -- cgit v1.2.1