Changeset f81778e9a7be3ba1eb45851b2e81a89884857c7c

Show
Ignore:
Timestamp:
10/31/06 18:51:59 (2 years ago)
Author:
Rémi Denis-Courmont <rem@videolan.org>
git-committer:
Rémi Denis-Courmont <rem@videolan.org> 1162317119 +0000
git-parent:

[bb24808cf580d17948910676038f36293ac1be61]

git-author:
Rémi Denis-Courmont <rem@videolan.org> 1162317119 +0000
Message:

fix Windows build

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • modules/access/file.c

    rbb24808 rf81778e  
    109109static int  Control( access_t *, int, va_list ); 
    110110 
    111 static int  OpenFile( access_t *, const char * ); 
     111static int  open_file( access_t *, const char * ); 
    112112 
    113113struct access_sys_t 
     
    214214                fd = dup (0); 
    215215            else 
    216                 fd = OpenFile (p_access, p_access->psz_path); 
     216                fd = open_file (p_access, p_access->psz_path); 
    217217        } 
    218218        else 
     
    225225 
    226226            msg_Dbg (p_access, "opening additionnal file `%s'", filename); 
    227             fd = OpenFile (p_access, filename); 
     227            fd = open_file (p_access, filename); 
    228228            filename = ptr + 1; 
    229229        } 
     
    514514 
    515515/***************************************************************************** 
    516  * OpenFile: Opens a specific file 
    517  *****************************************************************************/ 
    518 static int OpenFile (access_t *p_access, const char *psz_name) 
     516 * open_file: Opens a specific file 
     517 *****************************************************************************/ 
     518static int open_file (access_t *p_access, const char *psz_name) 
    519519{ 
    520520    char *path = expand_path (p_access, psz_name);