Author: Armin Rigo <[email protected]>
Branch:
Changeset: r2077:26a4a6fc452d
Date: 2015-05-21 16:28 +0200
http://bitbucket.org/cffi/cffi/changeset/26a4a6fc452d/
Log: clarify
diff --git a/c/misc_win32.h b/c/misc_win32.h
--- a/c/misc_win32.h
+++ b/c/misc_win32.h
@@ -218,7 +218,7 @@
static int dlclose(void *handle)
{
- return !FreeLibrary((HMODULE)handle);
+ return FreeLibrary((HMODULE)handle) ? 0 : -1;
}
static const char *dlerror(void)
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit