changeset 4193:8696ff8692fd

[project @ 2002-11-20 17:19:14 by jwe]
author jwe
date Wed, 20 Nov 2002 17:19:14 +0000
parents 5719210fff4c
children 54fe7750d8c7
files liboctave/oct-shlib.cc
diffstat 1 files changed, 2 insertions(+), 2 deletions(-) [+]
line wrap: on
line diff
--- a/liboctave/oct-shlib.cc	Wed Nov 20 16:56:49 2002 +0000
+++ b/liboctave/oct-shlib.cc	Wed Nov 20 17:19:14 2002 +0000
@@ -244,11 +244,11 @@
       int flags = 0;
 
 #if defined (RTLD_LAZY)
-      flags |= RTLD_LAZY
+      flags |= RTLD_LAZY;
 #endif
 
 #if defined (RTLD_GLOBAL)
-      flags |= RTLD_GLOBAL
+      flags |= RTLD_GLOBAL;
 #endif
       
       library = dlopen (file.c_str (), flags);