Commit e4429e9b authored by Laurent Aimar's avatar Laurent Aimar

* compilation fix for Os X.

parent c69d0735
...@@ -2,7 +2,7 @@ ...@@ -2,7 +2,7 @@
* ftp.c: * ftp.c:
***************************************************************************** *****************************************************************************
* Copyright (C) 2001, 2002 VideoLAN * Copyright (C) 2001, 2002 VideoLAN
* $Id: ftp.c,v 1.1 2002/12/15 23:39:41 fenrir Exp $ * $Id: ftp.c,v 1.2 2002/12/16 15:17:12 fenrir Exp $
* *
* Authors: Laurent Aimar <fenrir@via.ecp.fr> * Authors: Laurent Aimar <fenrir@via.ecp.fr>
* *
...@@ -470,7 +470,7 @@ static int ftp_SendCommand( input_thread_t *p_input, char *psz_fmt, ... ) ...@@ -470,7 +470,7 @@ static int ftp_SendCommand( input_thread_t *p_input, char *psz_fmt, ... )
vasprintf( &psz_buffer, psz_fmt, args ); vasprintf( &psz_buffer, psz_fmt, args );
#else #else
i_size = strlen( psz_fmt ) + 2048; i_size = strlen( psz_fmt ) + 2048;
psz_path = calloc( i_size, sizeof( char ) ); psz_buffer = calloc( i_size, sizeof( char ) );
vsnprintf( psz_buffer, i_size, psz_fmt, args ); vsnprintf( psz_buffer, i_size, psz_fmt, args );
psz_buffer[i_size - 1] = 0; psz_buffer[i_size - 1] = 0;
#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