Commit f7042676 authored by Rémi Denis-Courmont's avatar Rémi Denis-Courmont

stream: remove pointless cast

parent 01db92aa
...@@ -290,9 +290,9 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list ) ...@@ -290,9 +290,9 @@ stream_t *stream_AccessNew( access_t *p_access, char **ppsz_list )
return NULL; return NULL;
} }
s->pf_read = (void *)AStreamGenericError; /* Replaced later */ s->pf_read = AStreamGenericError; /* Replaced later */
s->pf_peek = (void *)AStreamGenericError; s->pf_peek = AStreamGenericError;
s->pf_readdir = (void *)AStreamGenericError; s->pf_readdir = AStreamGenericError;
s->pf_control = AStreamControl; s->pf_control = AStreamControl;
s->pf_destroy = AStreamDestroy; s->pf_destroy = AStreamDestroy;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment