From 54404e00634570d9d7e37f45969c1c9317a2e82e Mon Sep 17 00:00:00 2001 From: kramm Date: Tue, 23 Dec 2008 19:04:03 +0000 Subject: [PATCH] fixed dict_dump() --- lib/q.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/q.c b/lib/q.c index 0b19aa9..221ea5a 100644 --- a/lib/q.c +++ b/lib/q.c @@ -686,7 +686,7 @@ void dict_dump(dict_t*h, FILE*fi, const char*prefix) for(t=0;thashsize;t++) { dictentry_t*e = h->slots[t]; while(e) { - if(h->key_type==&charptr_type) { + if(h->key_type!=&charptr_type) { fprintf(fi, "%s%08x=%08x\n", prefix, e->key, e->data); } else { fprintf(fi, "%s%s=%08x\n", prefix, e->key, e->data); -- 1.7.10.4