From: krakjoe Date: Sun, 17 Nov 2013 11:17:47 +0000 (+0000) Subject: fix compiler warning X-Git-Tag: php-5.6.0alpha1~110^2~278^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f2edc066f2bab4cebef37c59c478315467b7f5d9;p=php fix compiler warning --- diff --git a/phpdbg_bp.c b/phpdbg_bp.c index 76d8b01764..e69b9fa9b3 100644 --- a/phpdbg_bp.c +++ b/phpdbg_bp.c @@ -48,7 +48,7 @@ void phpdbg_set_breakpoint_file(const char *path, long line_num TSRMLS_DC) /* {{ struct stat sb; if (VCWD_STAT(path, &sb) != FAILURE) { - if (sb.st_mode & S_IFREG|S_IFLNK) { + if (sb.st_mode & (S_IFREG|S_IFLNK)) { phpdbg_breakfile_t new_break; zend_llist *break_files_ptr; size_t path_len = strlen(path);