Changeset b6d069b38b19d45885dd1d9a8ff4bd3abe8897a6
- Timestamp:
- 09/27/07 15:45:40
(1 year ago)
- Author:
- Rafaël Carré <funman@videolan.org>
- git-committer:
- Rafaël Carré <funman@videolan.org> 1190900740 +0000
- git-parent:
[ac3ca410b51583ea5bdc6354fc4541cc5fda0bcd]
- git-author:
- Rafaël Carré <funman@videolan.org> 1190900740 +0000
- Message:
PATH_MAX is defined in limits.h
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r809a3ad |
rb6d069b |
|
| 32 | 32 | #include "../playlist/playlist_internal.h" |
|---|
| 33 | 33 | #include <errno.h> |
|---|
| | 34 | #include <limits.h> /* PATH_MAX */ |
|---|
| 34 | 35 | |
|---|
| 35 | 36 | #ifdef HAVE_SYS_STAT_H |
|---|
| … | … | |
| 223 | 224 | } |
|---|
| 224 | 225 | |
|---|
| 225 | | #ifndef PATH_MAX |
|---|
| 226 | | # define PATH_MAX 250 |
|---|
| 227 | | #endif |
|---|
| 228 | | |
|---|
| 229 | 226 | static void ArtCacheCreateDir( const char *psz_dir ) |
|---|
| 230 | 227 | { |
|---|