summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorReinhard Nißl <rnissl@gmx.de>2007-12-31 23:21:09 +0100
committerReinhard Nißl <rnissl@gmx.de>2007-12-31 23:21:09 +0100
commit09338b3edd5b7b918d730aa244abb119c83ab527 (patch)
treef254ee622868bb1b30e38fb3c414c8982788da18 /src
parent9674cfd4453258a728a7a77a3dd44416284522af (diff)
downloadxine-lib-09338b3edd5b7b918d730aa244abb119c83ab527.tar.gz
xine-lib-09338b3edd5b7b918d730aa244abb119c83ab527.tar.bz2
Fix broken test in vdr_is_vdr_stream().
The function was broken while getting it to compile after recent API changes.
Diffstat (limited to 'src')
-rw-r--r--src/vdr/combined_vdr.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/vdr/combined_vdr.h b/src/vdr/combined_vdr.h
index a802e7f2f..9757bff50 100644
--- a/src/vdr/combined_vdr.h
+++ b/src/vdr/combined_vdr.h
@@ -63,7 +63,7 @@ inline static int vdr_is_vdr_stream(xine_stream_t *stream)
}
if (stream->input_plugin->input_class->identifier &&
- strcmp(stream->input_plugin->input_class->identifier, "VDR"))
+ 0 == strcmp(stream->input_plugin->input_class->identifier, "VDR"))
return 1;
return 0;