From f2edc066f2bab4cebef37c59c478315467b7f5d9 Mon Sep 17 00:00:00 2001 From: krakjoe Date: Sun, 17 Nov 2013 11:17:47 +0000 Subject: [PATCH] fix compiler warning --- phpdbg_bp.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); -- 2.40.0