summaryrefslogtreecommitdiffstats
path: root/stream
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-21 11:37:47 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-12-21 11:37:47 +0000
commit642b9976902fd2f0a1fee435a52d999b79b25e96 (patch)
tree22257876fe540654727ea1da8b26fa59f0f62a01 /stream
parent5947ca8334f207eb43ef115acb895ecda9b28b2b (diff)
downloadmpv-642b9976902fd2f0a1fee435a52d999b79b25e96.tar.bz2
mpv-642b9976902fd2f0a1fee435a52d999b79b25e96.tar.xz
Remove another useless cast
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@25482 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'stream')
-rw-r--r--stream/asf_streaming.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stream/asf_streaming.c b/stream/asf_streaming.c
index 21e68ccfec..1e252c85be 100644
--- a/stream/asf_streaming.c
+++ b/stream/asf_streaming.c
@@ -177,7 +177,7 @@ static int max_idx(int s_count, int *s_rates, int bound) {
static int asf_streaming_parse_header(int fd, streaming_ctrl_t* streaming_ctrl) {
ASF_header_t asfh;
ASF_stream_chunck_t chunk;
- asf_http_streaming_ctrl_t* asf_ctrl = (asf_http_streaming_ctrl_t*) streaming_ctrl->data;
+ asf_http_streaming_ctrl_t* asf_ctrl = streaming_ctrl->data;
char* buffer=NULL, *chunk_buffer=NULL;
int i,r,size,pos = 0;
int start;