diff options
author | Sebastien Helleu <flashcode@flashtux.org> | 2012-12-08 23:54:07 +0100 |
---|---|---|
committer | Sebastien Helleu <flashcode@flashtux.org> | 2012-12-08 23:54:07 +0100 |
commit | 641de51bdbd449196c0d54102d17641cd4b5d3d7 (patch) | |
tree | 820e555781f6cb2d55bd06b5b71ee9ef083436d9 /src/plugins/plugin.c | |
parent | 3f2155e548c0ebe86a694f69630f41d7503f679c (diff) | |
download | weechat-641de51bdbd449196c0d54102d17641cd4b5d3d7.zip |
api: allow creation of structure with hdata_update (allowed for hdata "history")
Diffstat (limited to 'src/plugins/plugin.c')
-rw-r--r-- | src/plugins/plugin.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/plugin.c b/src/plugins/plugin.c index dfec3a14c..0f0fa7faa 100644 --- a/src/plugins/plugin.c +++ b/src/plugins/plugin.c @@ -1220,7 +1220,7 @@ plugin_hdata_plugin_cb (void *data, const char *hdata_name) (void) data; hdata = hdata_new (NULL, hdata_name, "prev_plugin", "next_plugin", - 0, NULL, NULL); + 0, 0, NULL, NULL); if (hdata) { HDATA_VAR(struct t_weechat_plugin, filename, STRING, 0, NULL, NULL); |