summaryrefslogtreecommitdiff
path: root/src/xine-engine/load_plugins.c
diff options
context:
space:
mode:
authorAndre Pang <athp@users.sourceforge.net>2004-12-01 06:03:46 +0000
committerAndre Pang <athp@users.sourceforge.net>2004-12-01 06:03:46 +0000
commitebc6a02cb2890d1b5c7f6dd2e965863a14aac939 (patch)
tree333c316a9eea10752f4cca35568891858dc7d839 /src/xine-engine/load_plugins.c
parent12f17c6ccc13429971722299e0f3ca98bef1b688 (diff)
downloadxine-lib-ebc6a02cb2890d1b5c7f6dd2e965863a14aac939.tar.gz
xine-lib-ebc6a02cb2890d1b5c7f6dd2e965863a14aac939.tar.bz2
Fix compilation on HP/UX and Cygwin/mingw32
CVS patchset: 7170 CVS date: 2004/12/01 06:03:46
Diffstat (limited to 'src/xine-engine/load_plugins.c')
-rw-r--r--src/xine-engine/load_plugins.c6
1 files changed, 3 insertions, 3 deletions
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