Skip to content

Commit

Permalink
- Cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
helly25 committed Mar 13, 2006
1 parent 04df7e3 commit 8f09dea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .gdbinit
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ define ____printzv_contents

printf "(refcount=%d) ", $zvalue->refcount
if $type == 0
printf "NULL: "
printf "NULL"
end
if $type == 1
printf "long: %ld", $zvalue->value.lval
Expand Down Expand Up @@ -202,7 +202,7 @@ define ____print_ht
end

if $p->nKeyLength > 0
printf "\"%s\" => ", (char*)$p->key.arKey.s
printf "\"%s\" => ", $p->key.arKey.s
else
printf "%d => ", $p->h
end
Expand Down Expand Up @@ -237,7 +237,7 @@ define ____print_ft
end

if $p->nKeyLength > 0
printf "\"%s\" => ", (char*)$p->key.arKey.s
printf "\"%s\" => ", $p->key.arKey.s
else
printf "%d => ", $p->h
end
Expand Down

0 comments on commit 8f09dea

Please sign in to comment.