diff options
| author | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-11-12 19:49:21 +0000 |
|---|---|---|
| committer | SND\MaddTheSane_cp <SND\MaddTheSane_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97> | 2011-11-12 19:49:21 +0000 |
| commit | a3c75d56e6bb3e77fb2bef70e1a0175a5e7ab966 (patch) | |
| tree | 802b9ff731f256a9d88e1ee7cac742d6469025ed | |
| parent | be61196f71ee0372b937d67f83e105e92ccb2a65 (diff) | |
| download | pcsxr-a3c75d56e6bb3e77fb2bef70e1a0175a5e7ab966.tar.gz | |
Make MAXPATHLEN match PATH_MAX from <sys/param.h>
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@72223 e17a0e51-4ae3-4d35-97c3-1a29b211df97
| -rw-r--r-- | macosx/config.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/macosx/config.h b/macosx/config.h index 483c79b1..5896bd91 100644 --- a/macosx/config.h +++ b/macosx/config.h @@ -9,7 +9,8 @@ #define CONFIG_H #ifndef MAXPATHLEN -#define MAXPATHLEN 256 +//match PAX_MAX in <sys/param.h> +#define MAXPATHLEN 1024 #endif #ifndef PACKAGE_VERSION |
