Changeset d3ce31e04c8b7a431cb2febcb26ec1d79ab3b79c

Show
Ignore:
Timestamp:
02/02/07 22:46:19 (2 years ago)
Author:
Antoine Cellerier <dionoea@videolan.org>
git-committer:
Antoine Cellerier <dionoea@videolan.org> 1170452779 +0000
git-parent:

[2ea0cb164abde81b0dd226611c7677c43ab52350]

git-author:
Antoine Cellerier <dionoea@videolan.org> 1170452779 +0000
Message:

Use DIR_SEP instead of "/"

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • src/video_output/vout_intf.c

    rccf664e rd3ce31e  
    598598        if( p_mypicturesdir == NULL ) 
    599599        { 
    600             asprintf( &val.psz_string, "%s/" CONFIG_DIR, 
     600            asprintf( &val.psz_string, "%s\\" CONFIG_DIR, 
    601601                      p_vout->p_libvlc->psz_homedir ); 
    602602        } 
     
    652652            do 
    653653            { 
    654                 asprintf( &psz_filename, "%s/%s%05d.%s", val.psz_string, 
     654                asprintf( &psz_filename, "%s" DIR_SEP "%s%05d.%s", val.psz_string, 
    655655                          psz_prefix, i_num++, format.psz_string ); 
    656656            } 
     
    660660        else 
    661661        { 
    662             asprintf( &psz_filename, "%s/%s%u.%s", val.psz_string, 
     662            asprintf( &psz_filename, "%s" DIR_SEP "%s%u.%s", val.psz_string, 
    663663                      psz_prefix, 
    664664                      (unsigned int)(p_pic->date / 100000) & 0xFFFFFF,