summaryrefslogtreecommitdiff
path: root/sapi/phpdbg/phpdbg.c
diff options
context:
space:
mode:
authorBob Weinand <bobwei9@hotmail.com>2016-10-12 22:16:11 +0200
committerAnatol Belski <ab@php.net>2016-10-14 01:50:48 +0200
commit06df34072e8b62145e3aa2abf03430ac6c5a8a80 (patch)
tree17acbde8af8d463523bf58575ac4d3576240b091 /sapi/phpdbg/phpdbg.c
parentf8be3ede4fa7a1f7514c7e1dfc004031a881e660 (diff)
downloadphp-git-06df34072e8b62145e3aa2abf03430ac6c5a8a80.tar.gz
Fix accidental PHPDBG_ABI break
(cherry picked from commit 671d8054f85d2dec1a00201a73ab792847c13919)
Diffstat (limited to 'sapi/phpdbg/phpdbg.c')
-rw-r--r--sapi/phpdbg/phpdbg.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sapi/phpdbg/phpdbg.c b/sapi/phpdbg/phpdbg.c
index be50de8070..f4b4273302 100644
--- a/sapi/phpdbg/phpdbg.c
+++ b/sapi/phpdbg/phpdbg.c
@@ -374,7 +374,7 @@ static PHP_FUNCTION(phpdbg_break_file)
return;
}
- phpdbg_set_breakpoint_file(file, 0, line);
+ phpdbg_set_breakpoint_file(file, line);
} /* }}} */
/* {{{ proto void phpdbg_break_method(string class, string method) */