Changeset 312324cd44cf10c2b090e91eefe8242a62cbeb1b

Show
Ignore:
Timestamp:
15/06/08 23:07:33 (4 months ago)
Author:
Pierre d'Herbemont <pdherbemont@videolan.org>
git-committer:
Pierre d'Herbemont <pdherbemont@videolan.org> 1213564053 +0200
git-parent:

[7e7f3bd7530de33ee945ce6d893c85431369c477]

git-author:
Pierre d'Herbemont <pdherbemont@videolan.org> 1213564053 +0200
Message:

update: Use const char * for psz_destdir.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • include/vlc_update.h

    rfbb8255 r312324c  
    5858VLC_EXPORT( void, update_Check, ( update_t *, void (*callback)( void*, bool ), void * ) ); 
    5959VLC_EXPORT( bool, update_NeedUpgrade, ( update_t * ) ); 
    60 VLC_EXPORT( void, update_Download, ( update_t *, char* ) ); 
     60VLC_EXPORT( void, update_Download, ( update_t *, const char* ) ); 
    6161VLC_EXPORT( update_release_t*, update_GetRelease, ( update_t * ) ); 
    6262 
  • src/misc/update.c

    r15e6f2c r312324c  
    14481448 * \return nothing 
    14491449 */ 
    1450 void update_Download( update_t *p_update, char *psz_destdir ) 
     1450void update_Download( update_t *p_update, const char *psz_destdir ) 
    14511451{ 
    14521452    assert( p_update ); 
     
    16911691} 
    16921692 
    1693 void update_Download( update_t *p_update, char *psz_destdir ) 
     1693void update_Download( update_t *p_update, const char *psz_destdir ) 
    16941694{ 
    16951695    (void)p_update; (void)psz_destdir;