diff options
author | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-05-05 11:43:50 +0000 |
---|---|---|
committer | Moriyoshi Koizumi <moriyoshi@php.net> | 2003-05-05 11:43:50 +0000 |
commit | 39742252b0abf86ca8092fdde6f52c147f9e0ec8 (patch) | |
tree | a434faa495e146457ba250d62c14f8149af6d7fc /.gdbinit | |
parent | b2ea7923c6f83e278e94b37022cdf893d877fb6f (diff) | |
download | php-git-39742252b0abf86ca8092fdde6f52c147f9e0ec8.tar.gz |
Fixed printzn part.
# please be more careful, sterling..
Diffstat (limited to '.gdbinit')
-rw-r--r-- | .gdbinit | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -238,17 +238,17 @@ define printzn if $znode->op_type == 1 printf ": " - ____printzv &$znode->u.constant + ____printzv &$znode->u.constant 0 end if $znode->op_type == 2 printf ": " set $tvar = (union _temp_variable *)((char *)$eg.current_execute_data->Ts + $znode->u.var) - ____printzv ((union _temp_variable *)$tvar)->tmp_var + ____printzv ((union _temp_variable *)$tvar)->tmp_var 0 end if $znode->op_type == 4 printf ": " set $tvar = (union _temp_variable *)((char *)$eg.current_execute_data->Ts + $znode->u.var) - ____printzv *$tvar->var.ptr_ptr + ____printzv *$tvar->var.ptr_ptr 0 end if $znode->op_type == 8 printf "\n" |