diff options
author | Pierre Joye <pajoye@php.net> | 2010-02-01 15:31:58 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-02-01 15:31:58 +0000 |
commit | 6d913a02724aa142cc60c56ef606cbca09a673be (patch) | |
tree | 4bd85f11a733e955f3372e95513793afc731a7b1 /TSRM | |
parent | f25710db92b8ade37ec6024ae1d432808e841359 (diff) | |
download | php-git-6d913a02724aa142cc60c56ef606cbca09a673be.tar.gz |
- oops, wrong one applied, fix build.
Diffstat (limited to 'TSRM')
-rw-r--r-- | TSRM/tsrm_virtual_cwd.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/tsrm_virtual_cwd.c b/TSRM/tsrm_virtual_cwd.c index 972e71bbf3..6b4a35dd20 100644 --- a/TSRM/tsrm_virtual_cwd.c +++ b/TSRM/tsrm_virtual_cwd.c @@ -1004,7 +1004,7 @@ CWD_API int virtual_file_ex(cwd_state *state, const char *path, verify_path_func #ifdef TSRM_WIN32 _set_errno(EINVAL); #else - errno = EINVAL + errno = EINVAL; #endif return 1; } |