From 3e596b7fc61e7c016cfe10eb100f733a63ac2870 Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Thu, 17 Nov 2011 15:56:41 +0200 Subject: Missing semicolon --- sal/osl/unx/module.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sal') diff --git a/sal/osl/unx/module.c b/sal/osl/unx/module.c index b79dfbc80ceb..952449db8ed2 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) -- cgit