summaryrefslogtreecommitdiffstats
path: root/byterun/unix.c
diff options
context:
space:
mode:
authorAlain Frisch <alain@frisch.fr>2008-12-03 12:56:59 +0000
committerAlain Frisch <alain@frisch.fr>2008-12-03 12:56:59 +0000
commitc52e649d83e34967da0fd2a70faf5c91070c8a91 (patch)
treea9babf0e786232622b9e4a48f10444d7b723913b /byterun/unix.c
parent686b90b26e56d7b8f9517248317a558e2d1a2480 (diff)
Fix call to flexdll_dlopen for Cygwin.
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@9148 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/unix.c')
-rw-r--r--byterun/unix.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/byterun/unix.c b/byterun/unix.c
index b0e606ccc..6143a565c 100644
--- a/byterun/unix.c
+++ b/byterun/unix.c
@@ -190,7 +190,7 @@ void * caml_dlsym(void * handle, char * name)
void * caml_globalsym(char * name)
{
- return flexdll_dlsym(flexdll_dlopen(NULL,0,1), name);
+ return flexdll_dlsym(flexdll_dlopen(NULL,0), name);
}
char * caml_dlerror(void)