]> granicus.if.org Git - php/commitdiff
Eliminate _PP macro
authorStanislav Malyshev <stas@php.net>
Sun, 18 Oct 2015 23:37:03 +0000 (16:37 -0700)
committerStanislav Malyshev <stas@php.net>
Sun, 18 Oct 2015 23:37:03 +0000 (16:37 -0700)
Not sure if this code ever used (probably not as it doesn't even compile now)
but just in case...

ext/readline/readline.c

index 47e59d8363922b2fd99cfbe0711fa025dd631538..11fa5964b6f9d7e4984bd22ecbf43e20783c757f 100644 (file)
@@ -305,7 +305,7 @@ PHP_FUNCTION(readline_info)
                        oldval = rl_erase_empty_line;
                        if (value) {
                                convert_to_long_ex(value);
-                               rl_erase_empty_line = Z_LVAL_PP(value);
+                               rl_erase_empty_line = Z_LVAL_P(value);
                        }
                        RETVAL_LONG(oldval);
 #endif