Author: Armin Rigo <[email protected]>
Branch: cffi-1.0
Changeset: r1999:f47f60978d44
Date: 2015-05-13 19:04 +0200
http://bitbucket.org/cffi/cffi/changeset/f47f60978d44/

Log:    Windows fix

diff --git a/c/misc_win32.h b/c/misc_win32.h
--- a/c/misc_win32.h
+++ b/c/misc_win32.h
@@ -216,9 +216,10 @@
     return address;
 }
 
-static void dlclose(void *handle)
+static int dlclose(void *handle)
 {
     FreeLibrary((HMODULE)handle);
+    return 0;
 }
 
 static const char *dlerror(void)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to