From 09338b3edd5b7b918d730aa244abb119c83ab527 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Reinhard=20Ni=C3=9Fl?= Date: Mon, 31 Dec 2007 23:21:09 +0100 Subject: Fix broken test in vdr_is_vdr_stream(). The function was broken while getting it to compile after recent API changes. --- src/vdr/combined_vdr.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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; -- cgit v1.2.3