# HG changeset patch # User reimar # Date 1352555701 0 # Node ID c93f7ddd73df557d7e91554d6ce1c467c795519a # Parent f570e9faa3c7a3be1526a5b01f66dce77bd373a9 Remove pointless cast. diff -r f570e9faa3c7 -r c93f7ddd73df stream/http.c --- 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; }