diff options
Diffstat (limited to 'src/core/wee-eval.c')
-rw-r--r-- | src/core/wee-eval.c | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/core/wee-eval.c b/src/core/wee-eval.c index 7909f05d0..fef8a8949 100644 --- a/src/core/wee-eval.c +++ b/src/core/wee-eval.c @@ -1230,6 +1230,11 @@ eval_hdata_get_value (struct t_hdata *hdata, void *pointer, const char *path, "%ld", hdata_long (hdata, pointer, var_name)); value = strdup (str_value); break; + case WEECHAT_HDATA_LONGLONG: + snprintf (str_value, sizeof (str_value), + "%lld", hdata_longlong (hdata, pointer, var_name)); + value = strdup (str_value); + break; case WEECHAT_HDATA_STRING: case WEECHAT_HDATA_SHARED_STRING: ptr_value = hdata_string (hdata, pointer, var_name); |