diff options
author | Reinhard Nißl <rnissl@gmx.de> | 2007-12-31 23:21:09 +0100 |
---|---|---|
committer | Reinhard Nißl <rnissl@gmx.de> | 2007-12-31 23:21:09 +0100 |
commit | 09338b3edd5b7b918d730aa244abb119c83ab527 (patch) | |
tree | f254ee622868bb1b30e38fb3c414c8982788da18 | |
parent | 9674cfd4453258a728a7a77a3dd44416284522af (diff) | |
download | xine-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.
-rw-r--r-- | src/vdr/combined_vdr.h | 2 |
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; |