diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-10 17:10:46 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2003-12-10 17:10:46 +0000 |
commit | aa6a734a5bce28ebece370f04d23e2cf5b5bb75f (patch) | |
tree | bccbc28784932537d15e5452a089d9c04b228afa /src/input/input_rtp.c | |
parent | f2a3302eca9a43b4fe369b34f51b62357787569d (diff) | |
download | xine-lib-aa6a734a5bce28ebece370f04d23e2cf5b5bb75f.tar.gz xine-lib-aa6a734a5bce28ebece370f04d23e2cf5b5bb75f.tar.bz2 |
fix unused variable
CVS patchset: 5888
CVS date: 2003/12/10 17:10:46
Diffstat (limited to 'src/input/input_rtp.c')
-rw-r--r-- | src/input/input_rtp.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/input/input_rtp.c b/src/input/input_rtp.c index 1423c5613..6240a722c 100644 --- a/src/input/input_rtp.c +++ b/src/input/input_rtp.c @@ -533,7 +533,7 @@ static char* rtp_plugin_get_mrl (input_plugin_t *this_gen) { */ static int rtp_plugin_get_optional_data (input_plugin_t *this_gen, void *data, int data_type) { - rtp_input_plugin_t *this = (rtp_input_plugin_t *) this_gen; + /* rtp_input_plugin_t *this = (rtp_input_plugin_t *) this_gen; */ /* TODO: this input plugin should support preview */ return INPUT_OPTIONAL_UNSUPPORTED; |