commit 59dcf5fb56373afd907902d656a113ef46b3f755
parent bc2a106cb71cca45ee66e761df3a0200a1ccb0d1
Author: Christian Grothoff <christian@grothoff.org>
Date: Mon, 18 Jan 2010 07:57:29 +0000
fixing compiler warning
Diffstat:
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/src/main/extractor.c b/src/main/extractor.c
@@ -557,10 +557,10 @@ load_plugins_from_dir (void *cls,
{
if (ent->d_name[0] == '.')
continue;
- if ( (NULL != (la = strstr (ent->d_name, ".la"))) &&
- (la[3] == '\0') ||
- (NULL != (la = strstr (ent->d_name, ".a"))) &&
- (la[2] == '\0'))
+ if ( ( (NULL != (la = strstr (ent->d_name, ".la"))) &&
+ (la[3] == '\0') ) ||
+ ( (NULL != (la = strstr (ent->d_name, ".a"))) &&
+ (la[2] == '\0')) )
continue; /* only load '.so' and '.dll' */
sym_name = strstr (ent->d_name, "_");