From ebc6a02cb2890d1b5c7f6dd2e965863a14aac939 Mon Sep 17 00:00:00 2001 From: Andre Pang Date: Wed, 1 Dec 2004 06:03:46 +0000 Subject: Fix compilation on HP/UX and Cygwin/mingw32 CVS patchset: 7170 CVS date: 2004/12/01 06:03:46 --- src/xine-engine/load_plugins.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/xine-engine/load_plugins.c') diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 4ea1f8084..df3e9bf7c 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: load_plugins.c,v 1.189 2004/11/17 11:39:24 miguelfreitas Exp $ + * $Id: load_plugins.c,v 1.190 2004/12/01 06:03:46 athp Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -493,9 +493,9 @@ static void collect_plugins(xine_t *this, char *path){ * b) also cache negative hits, ie. files that failed to dlopen() */ #if defined(__hpux) - if(!strstr(str, ".sl")) + if(!strstr(str, ".sl") #elif defined(__CYGWIN__) || defined(WIN32) - if(!strstr(str, ".dll")) + if(!strstr(str, ".dll") #else if(!strstr(str, ".so") #endif -- cgit v1.2.3