changeset 35309:c93f7ddd73df

Remove pointless cast.
author reimar
date Sat, 10 Nov 2012 13:55:01 +0000
parents f570e9faa3c7
children 7077d1aed027
files stream/http.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/stream/http.c	Sat Nov 10 13:53:29 2012 +0000
+++ b/stream/http.c	Sat Nov 10 13:55:01 2012 +0000
@@ -852,7 +852,7 @@
 	http_free( http_hdr );
 	http_hdr = NULL;
 out:
-	stream->streaming_ctrl->data = (void*)http_hdr;
+	stream->streaming_ctrl->data = http_hdr;
 	stream->fd = fd;
 	return res;
 }