changeset 232:76ed51a690a6

- todo comment
author Tassilo Philipp
date Sun, 16 Apr 2017 15:08:50 +0200
parents 1d774010ddb9
children 8216c86b4cbc
files dynload/dynload_unix.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/dynload/dynload_unix.c	Sun Apr 16 15:05:50 2017 +0200
+++ b/dynload/dynload_unix.c	Sun Apr 16 15:08:50 2017 +0200
@@ -41,7 +41,7 @@
 
 DLLib* dlLoadLibrary(const char* libPath)
 {
-  return (DLLib*)dlopen(libPath,RTLD_NOW|RTLD_GLOBAL);
+  return (DLLib*)dlopen(libPath, RTLD_NOW|RTLD_GLOBAL); //@@@ should use RTLD_LAZY, maybe?
 }