summaryrefslogtreecommitdiff
path: root/src/gui/gui-hotlist.c
diff options
context:
space:
mode:
authorSébastien Helleu <flashcode@flashtux.org>2024-03-15 07:45:01 +0100
committerSébastien Helleu <flashcode@flashtux.org>2024-03-15 21:32:32 +0100
commit080eecef2c455524b8cf0b2183a81d06392fd5fb (patch)
tree52f1e2fd15c9cbb0daf54d0ef800ba1814aa8a64 /src/gui/gui-hotlist.c
parentfe01faa9ab389ae565fa1f09994f6bcfd58f4b0e (diff)
downloadweechat-080eecef2c455524b8cf0b2183a81d06392fd5fb.zip
core: add missing hdata name "buffer" in hdata "hotlist"
Diffstat (limited to 'src/gui/gui-hotlist.c')
-rw-r--r--src/gui/gui-hotlist.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/gui-hotlist.c b/src/gui/gui-hotlist.c
index 56bf5fe7f..8b1bbc467 100644
--- a/src/gui/gui-hotlist.c
+++ b/src/gui/gui-hotlist.c
@@ -748,7 +748,7 @@ gui_hotlist_hdata_hotlist_cb (const void *pointer, void *data,
HDATA_VAR(struct t_gui_hotlist, priority, INTEGER, 0, NULL, NULL);
HDATA_VAR(struct t_gui_hotlist, creation_time.tv_sec, TIME, 0, NULL, NULL);
HDATA_VAR(struct t_gui_hotlist, creation_time.tv_usec, LONG, 0, NULL, NULL);
- HDATA_VAR(struct t_gui_hotlist, buffer, POINTER, 0, NULL, NULL);
+ HDATA_VAR(struct t_gui_hotlist, buffer, POINTER, 0, NULL, "buffer");
HDATA_VAR(struct t_gui_hotlist, count, INTEGER, 0, GUI_HOTLIST_NUM_PRIORITIES_STR, NULL);
HDATA_VAR(struct t_gui_hotlist, prev_hotlist, POINTER, 0, NULL, hdata_name);
HDATA_VAR(struct t_gui_hotlist, next_hotlist, POINTER, 0, NULL, hdata_name);