diff liboctave/oct-shlib.cc @ 4193:8696ff8692fd

[project @ 2002-11-20 17:19:14 by jwe]
author jwe
date Wed, 20 Nov 2002 17:19:14 +0000
parents e4b7578e5fc7
children c1f6200b5f0e
line wrap: on
line diff
--- a/liboctave/oct-shlib.cc
+++ b/liboctave/oct-shlib.cc
@@ -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);