summaryrefslogtreecommitdiff
path: root/.gdbinit
diff options
context:
space:
mode:
authorHannes Magnusson <bjori@php.net>2015-09-01 14:52:04 -0700
committerHannes Magnusson <bjori@php.net>2015-09-01 14:52:04 -0700
commit874dcd8f737349551f8549ed3a142f557fd3d847 (patch)
treef5e9829461cbfa1c1c4b964cde3f5d16a45d627c /.gdbinit
parentb15eff63862c9ac24184b8121431019a352a42f8 (diff)
downloadphp-git-874dcd8f737349551f8549ed3a142f557fd3d847.tar.gz
Doubles are not refcounted
Diffstat (limited to '.gdbinit')
-rw-r--r--.gdbinit2
1 files changed, 1 insertions, 1 deletions
diff --git a/.gdbinit b/.gdbinit
index ff810f47af..1c399c102c 100644
--- a/.gdbinit
+++ b/.gdbinit
@@ -152,7 +152,7 @@ define ____printzv_contents
set $type = $zvalue->u1.v.type
# 15 == IS_INDIRECT
- if $type >= 5 && $type != 15
+ if $type > 5 && $type != 15
printf "(refcount=%d) ", $zvalue->value.counted->gc.refcount
end