don't print NULLNULL for null values in a zval

This commit is contained in:
Greg Beaver 2009-07-30 23:16:42 +00:00
parent b891e4a94b
commit ce0a6e31c5

View File

@ -158,8 +158,9 @@ define ____printzv_contents
printf ") " printf ") "
if $type == 0 if $type == 0
printf "NULL" printf "NULL"
else
____printz_type $type
end end
____printz_type $type
if $type == 1 if $type == 1
printf ": %ld", $zvalue->value.lval printf ": %ld", $zvalue->value.lval
end end