diff options
author | Pierre Joye <pajoye@php.net> | 2010-02-04 15:34:19 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-02-04 15:34:19 +0000 |
commit | 3a239b15e94cdec8b2205e0d1f3d3cc9032db457 (patch) | |
tree | 920efd488aedbc7a92992165d4b5c6ea84c4d88a | |
parent | e929582421faac6370a97e1c6ab7d44db00d4155 (diff) | |
download | php-git-3a239b15e94cdec8b2205e0d1f3d3cc9032db457.tar.gz |
- silent warning
-rw-r--r-- | TSRM/tsrm_win32.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/TSRM/tsrm_win32.c b/TSRM/tsrm_win32.c index ca3452bc6a..18917cd16b 100644 --- a/TSRM/tsrm_win32.c +++ b/TSRM/tsrm_win32.c @@ -350,7 +350,7 @@ TSRM_API int tsrm_win32_access(const char *pathname, int mode) else if(desired_access == FILE_GENERIC_WRITE) { bucket->is_wvalid = 1; bucket->is_writable = fAccess; - } else if (desired_access == FILE_GENERIC_READ | FILE_GENERIC_WRITE) { + } else if (desired_access == (FILE_GENERIC_READ | FILE_GENERIC_WRITE)) { bucket->is_rvalid = 1; bucket->is_readable = fAccess; bucket->is_wvalid = 1; |