diff options
author | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-27 21:40:09 +0000 |
---|---|---|
committer | nicodvb <nicodvb@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2007-08-27 21:40:09 +0000 |
commit | 0bfd6cb4f1d431e57afecf805873dfda9c058bf5 (patch) | |
tree | 62304a79aabc285d66e291139263b35ff2e5e701 | |
parent | c803ba9baf2570286085ce68a139c64d89fd8e52 (diff) |
in stream_control() remove redefinition of d in a case block, previously assigned in the same function
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@24249 b3059339-0415-0410-9bf9-f77b7e298cf2
-rw-r--r-- | stream/stream_dvd.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/stream/stream_dvd.c b/stream/stream_dvd.c index 1625fdbf97..4e9748a812 100644 --- a/stream/stream_dvd.c +++ b/stream/stream_dvd.c @@ -732,7 +732,6 @@ static int control(stream_t *stream,int cmd,void* arg) } case STREAM_CTRL_SEEK_TO_TIME: { - dvd_priv_t *d = stream->priv; if(stream_cache_size > 0) return STREAM_UNSUPORTED; if(dvd_seek_to_time(stream, d->vts_file, *((double*)arg))) return 1; |