diff options
author | Tor Lillqvist <tlillqvist@suse.com> | 2011-11-17 15:56:41 +0200 |
---|---|---|
committer | Tor Lillqvist <tlillqvist@suse.com> | 2011-11-17 15:56:41 +0200 |
commit | 3e596b7fc61e7c016cfe10eb100f733a63ac2870 (patch) | |
tree | 67bc94c17b571307412341839ef79c0d361d3258 /sal/osl | |
parent | 480a380a7284d5d59f39aad15fd1a299ba704a2f (diff) |
Missing semicolon
Diffstat (limited to 'sal/osl')
-rw-r--r-- | sal/osl/unx/module.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) |