[Libreoffice-commits] .: sal/osl

Tor Lillqvist tml at kemper.freedesktop.org
Thu Nov 17 05:56:51 PST 2011


 sal/osl/unx/module.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 3e596b7fc61e7c016cfe10eb100f733a63ac2870
Author: Tor Lillqvist <tlillqvist at suse.com>
Date:   Thu Nov 17 15:56:41 2011 +0200

    Missing semicolon

diff --git a/sal/osl/unx/module.c b/sal/osl/unx/module.c
index b79dfbc..952449d 100644
--- a/sal/osl/unx/module.c
+++ b/sal/osl/unx/module.c
@@ -99,7 +99,7 @@ static sal_Bool getModulePathFromAddress(void * address, rtl_String ** path) {
     int (*lo_dladdr)(void *, Dl_info *) = dlsym(RTLD_DEFAULT, "lo_dladdr");
     result = (*lo_dladdr)(address, &dl_info);
 #else
-    result = dladdr(address, &dl_info)
+    result = dladdr(address, &dl_info);
 #endif
 
     if (result != 0)


More information about the Libreoffice-commits mailing list