From c63f9e09579ba88c4b9510ccce062fbc767fd3a6 Mon Sep 17 00:00:00 2001 From: Damien Doligez Date: Sat, 9 Mar 2013 22:38:52 +0000 Subject: 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 --- byterun/unix.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'byterun/unix.c') 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 */ } -- cgit v1.2.3-70-g09d2