From 59dcf5fb56373afd907902d656a113ef46b3f755 Mon Sep 17 00:00:00 2001 From: Christian Grothoff Date: Mon, 18 Jan 2010 07:57:29 +0000 Subject: fixing compiler warning --- src/main/extractor.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/extractor.c b/src/main/extractor.c index b9e04ef..f0442e4 100644 --- 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, "_"); -- cgit v1.2.3