diff options
| author | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-04-11 13:52:04 +0300 |
|---|---|---|
| committer | Petri Hintukainen <phintuka@users.sourceforge.net> | 2012-04-11 13:52:04 +0300 |
| commit | 063ea19dbf5e49f6be76b656994fc7ded51b8ae9 (patch) | |
| tree | 2991ec233ef2127fe59d3d36d0387a786e8e50de /src/input/input_dvd.c | |
| parent | 02313d506f360392a6e221a31a267f0aa79c0dfb (diff) | |
| download | xine-lib-063ea19dbf5e49f6be76b656994fc7ded51b8ae9.tar.gz xine-lib-063ea19dbf5e49f6be76b656994fc7ded51b8ae9.tar.bz2 | |
Fixed warnings
Diffstat (limited to 'src/input/input_dvd.c')
| -rw-r--r-- | src/input/input_dvd.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/input/input_dvd.c b/src/input/input_dvd.c index 8bf8ab580..ca6f9bf25 100644 --- a/src/input/input_dvd.c +++ b/src/input/input_dvd.c @@ -871,13 +871,13 @@ static off_t dvd_plugin_get_current_pos (input_plugin_t *this_gen){ dvd_input_plugin_t *this = (dvd_input_plugin_t*)this_gen; uint32_t pos=0; uint32_t length=1; - dvdnav_status_t result; + /*dvdnav_status_t result;*/ trace_print("Called\n"); if(!this || !this->dvdnav) { return 0; } - result = dvdnav_get_position(this->dvdnav, &pos, &length); + /*result =*/ dvdnav_get_position(this->dvdnav, &pos, &length); return (off_t)pos * (off_t)DVD_BLOCK_SIZE; } @@ -912,14 +912,14 @@ static off_t dvd_plugin_get_length (input_plugin_t *this_gen) { dvd_input_plugin_t *this = (dvd_input_plugin_t*)this_gen; uint32_t pos=0; uint32_t length=1; - dvdnav_status_t result; + /*dvdnav_status_t result;*/ trace_print("Called\n"); if(!this || !this->dvdnav) { return 0; } - result = dvdnav_get_position(this->dvdnav, &pos, &length); + /*result =*/ dvdnav_get_position(this->dvdnav, &pos, &length); return (off_t)length * (off_t)DVD_BLOCK_SIZE; } |
