Commit cad3fd6d authored by Clément Stenac's avatar Clément Stenac

annoying typo :)

parent 224b28cb
...@@ -422,7 +422,7 @@ int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs, ...@@ -422,7 +422,7 @@ int __net_Write( vlc_object_t *p_this, int fd, const v_socket_t *p_vs,
val = p_vs->pf_send (p_vs->p_sys, p_data, i_data); val = p_vs->pf_send (p_vs->p_sys, p_data, i_data);
else else
#if defined(WIN32) || defined(UNDER_CE) #if defined(WIN32) || defined(UNDER_CE)
val = recv (fd, p_data, i_data, 0); val = send (fd, p_data, i_data, 0);
#else #else
val = write (fd, p_data, i_data); val = write (fd, p_data, i_data);
#endif #endif
......
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