]> git.sesse.net Git - vlc/commitdiff
* modules/misc/sap.c: compilation fix.
authorGildas Bazin <gbazin@videolan.org>
Thu, 6 Nov 2003 09:59:45 +0000 (09:59 +0000)
committerGildas Bazin <gbazin@videolan.org>
Thu, 6 Nov 2003 09:59:45 +0000 (09:59 +0000)
modules/misc/sap.c

index a56cf6a0046e368fa584aaa40dd28b0527537193..52417ca02d023b08c8b100ae2f48ac7607dad3e2 100644 (file)
@@ -2,7 +2,7 @@
  * sap.c :  SAP interface module
  *****************************************************************************
  * 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>
  *          ClĂ©ment Stenac <zorglub@via.ecp.fr>
@@ -116,7 +116,7 @@ vlc_module_end();
  *****************************************************************************/
 
 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 sess_descr_t sess_descr_t;
@@ -736,7 +736,7 @@ static int ismult( char *psz_uri )
  * Read: read on a file descriptor, checking b_die periodically
  *****************************************************************************
  * Taken from udp.c
- ******************************************************************************/
+ *****************************************************************************/
 static ssize_t NetRead( intf_thread_t *p_intf,
                         int fd[2], uint8_t *p_buffer, int i_len )
 {