Changeset d3ce31e04c8b7a431cb2febcb26ec1d79ab3b79c
- 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
| rccf664e |
rd3ce31e |
|
| 598 | 598 | if( p_mypicturesdir == NULL ) |
|---|
| 599 | 599 | { |
|---|
| 600 | | asprintf( &val.psz_string, "%s/" CONFIG_DIR, |
|---|
| | 600 | asprintf( &val.psz_string, "%s\\" CONFIG_DIR, |
|---|
| 601 | 601 | p_vout->p_libvlc->psz_homedir ); |
|---|
| 602 | 602 | } |
|---|
| … | … | |
| 652 | 652 | do |
|---|
| 653 | 653 | { |
|---|
| 654 | | asprintf( &psz_filename, "%s/%s%05d.%s", val.psz_string, |
|---|
| | 654 | asprintf( &psz_filename, "%s" DIR_SEP "%s%05d.%s", val.psz_string, |
|---|
| 655 | 655 | psz_prefix, i_num++, format.psz_string ); |
|---|
| 656 | 656 | } |
|---|
| … | … | |
| 660 | 660 | else |
|---|
| 661 | 661 | { |
|---|
| 662 | | asprintf( &psz_filename, "%s/%s%u.%s", val.psz_string, |
|---|
| | 662 | asprintf( &psz_filename, "%s" DIR_SEP "%s%u.%s", val.psz_string, |
|---|
| 663 | 663 | psz_prefix, |
|---|
| 664 | 664 | (unsigned int)(p_pic->date / 100000) & 0xFFFFFF, |
|---|