Commit cd32c3ae authored by Gildas Bazin's avatar Gildas Bazin

* modules/misc/sap.c: compilation fix.

parent 8d80d177
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* sap.c : SAP interface module * sap.c : SAP interface module
***************************************************************************** *****************************************************************************
* Copyright (C) 2001 VideoLAN * Copyright (C) 2001 VideoLAN
* $Id: sap.c,v 1.30 2003/11/05 23:28:36 fenrir Exp $ * $Id: sap.c,v 1.31 2003/11/06 09:59:45 gbazin Exp $
* *
* Authors: Arnaud Schauly <gitan@via.ecp.fr> * Authors: Arnaud Schauly <gitan@via.ecp.fr>
* Clment Stenac <zorglub@via.ecp.fr> * Clment Stenac <zorglub@via.ecp.fr>
...@@ -116,7 +116,7 @@ vlc_module_end(); ...@@ -116,7 +116,7 @@ vlc_module_end();
*****************************************************************************/ *****************************************************************************/
static void Run ( intf_thread_t *p_intf ); static void Run ( intf_thread_t *p_intf );
static int NetRead( intf_thread_t *, int fd[2], uint8_t *, int ); static ssize_t NetRead( intf_thread_t *, int fd[2], uint8_t *, int );
typedef struct media_descr_t media_descr_t; typedef struct media_descr_t media_descr_t;
typedef struct sess_descr_t sess_descr_t; typedef struct sess_descr_t sess_descr_t;
...@@ -736,7 +736,7 @@ static int ismult( char *psz_uri ) ...@@ -736,7 +736,7 @@ static int ismult( char *psz_uri )
* Read: read on a file descriptor, checking b_die periodically * Read: read on a file descriptor, checking b_die periodically
***************************************************************************** *****************************************************************************
* Taken from udp.c * Taken from udp.c
******************************************************************************/ *****************************************************************************/
static ssize_t NetRead( intf_thread_t *p_intf, static ssize_t NetRead( intf_thread_t *p_intf,
int fd[2], uint8_t *p_buffer, int i_len ) int fd[2], uint8_t *p_buffer, int i_len )
{ {
......
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