summaryrefslogtreecommitdiffstats
path: root/byterun/unix.c
diff options
context:
space:
mode:
authorDamien Doligez <damien.doligez-inria.fr>2013-03-09 22:38:52 +0000
committerDamien Doligez <damien.doligez-inria.fr>2013-03-09 22:38:52 +0000
commitc63f9e09579ba88c4b9510ccce062fbc767fd3a6 (patch)
treea9a7f7ef5f2c1a7d84ba7034e3ed12422800ec96 /byterun/unix.c
parentfb36548704ce096310707204c77218fe4d69f069 (diff)
fix a few problems with whitespace and over-long lines
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@13393 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/unix.c')
-rw-r--r--byterun/unix.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/byterun/unix.c b/byterun/unix.c
index 95fecf5ea..3fee9a396 100644
--- a/byterun/unix.c
+++ b/byterun/unix.c
@@ -211,7 +211,8 @@ char * caml_dlerror(void)
void * caml_dlopen(char * libname, int for_execution, int global)
{
- return dlopen(libname, RTLD_NOW | (global ? RTLD_GLOBAL : RTLD_LOCAL) | RTLD_NODELETE);
+ return dlopen(libname, RTLD_NOW | (global ? RTLD_GLOBAL : RTLD_LOCAL)
+ | RTLD_NODELETE);
/* Could use RTLD_LAZY if for_execution == 0, but needs testing */
}