diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-06 11:25:14 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2014-01-06 11:25:14 +0100 |
commit | fa73f5357b0065857b23e1ad0e0645eb7b2bd0e0 (patch) | |
tree | fc7a757ca010d49298ac19ab5b089f843ba3ab5f /src | |
parent | 646a0725119330e518495018ea911fc6b144c83c (diff) | |
download | weechat-fa73f5357b0065857b23e1ad0e0645eb7b2bd0e0.zip |
core: add missing type "shared_string" in hdata_type_string[]
Diffstat (limited to 'src')
-rw-r--r-- | src/core/wee-hdata.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/core/wee-hdata.c b/src/core/wee-hdata.c index fea9207b4..f14350616 100644 --- a/src/core/wee-hdata.c +++ b/src/core/wee-hdata.c @@ -42,9 +42,9 @@ struct t_hashtable *hdata_search_pointers = NULL; struct t_hashtable *hdata_search_extra_vars = NULL; struct t_hashtable *hdata_search_options = NULL; -char *hdata_type_string[8] = +char *hdata_type_string[9] = { "other", "char", "integer", "long", "string", "pointer", "time", - "hashtable" }; + "hashtable", "shared_string" }; /* |