aboutsummaryrefslogtreecommitdiff
path: root/common.h
diff options
context:
space:
mode:
authorPetr Machata <pmachata@redhat.com>2012-11-28 03:38:47 +0100
committerPetr Machata <pmachata@redhat.com>2013-03-08 22:52:31 +0100
commitd7e4ca82e1cf20bb2605befb1da74dd1688c706e (patch)
treec193853ec852238e8e5ff3c0337a1e9672864676 /common.h
parentdd5320340d6889a78027abed2a346cf907153d02 (diff)
downloadltrace-d7e4ca82e1cf20bb2605befb1da74dd1688c706e.tar.gz
Rewrite dict module to be more in line with vect
It's now a bit more strongly typed, can grow and shrink on demand, and has a more complete interface. It uses open addressing scheme to store hashes.
Diffstat (limited to 'common.h')
-rw-r--r--common.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/common.h b/common.h
index f333f3f..5fbe861 100644
--- a/common.h
+++ b/common.h
@@ -74,7 +74,7 @@ struct opt_c_struct {
#include "demangle.h"
#endif
-extern Dict * dict_opt_c;
+extern struct dict *dict_opt_c;
/* Events */
extern Event * next_event(void);