summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authortduehr <td@matasano.com>2014-06-25 10:21:48 -0500
committertduehr <td@matasano.com>2014-06-25 10:21:48 -0500
commitdf496d6726ef4ef78b6d03bb0d7324663dfd6a2a (patch)
tree9a2a20f6b8a1491462645d8d8480ab5a6b0a43db
parent5c9fe12891b3f69e79995bfcba74106a1e2e4c6c (diff)
parent730cbc02d500b12a26228c74f74449d03b718045 (diff)
downloadffi-df496d6726ef4ef78b6d03bb0d7324663dfd6a2a.tar.gz
Merge pull request #349 from larskanis/fix_typo_RTLD_NOW
Fix typo in checking RTLD defines.
-rw-r--r--ext/ffi_c/DynamicLibrary.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/ffi_c/DynamicLibrary.h b/ext/ffi_c/DynamicLibrary.h
index 6be80f7..97bf7bc 100644
--- a/ext/ffi_c/DynamicLibrary.h
+++ b/ext/ffi_c/DynamicLibrary.h
@@ -38,7 +38,7 @@ extern "C" {
#define RTLD_LAZY 1
#endif
-#ifndef RTLD_LAZY
+#ifndef RTLD_NOW
#define RTLD_NOW 2
#endif