1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 16:23:14 +02:00

php: return long instead of int in function hdata_time

This commit is contained in:
Sébastien Helleu
2018-04-10 19:34:43 +02:00
parent 9d83cefdbf
commit 4001ed956f
+1 -1
View File
@@ -4786,7 +4786,7 @@ API_FUNC(hdata_time)
name = ZSTR_VAL(z_name);
result = weechat_hdata_time (hdata, pointer, (const char *)name);
API_RETURN_INT(result);
API_RETURN_LONG(result);
}
API_FUNC(hdata_hashtable)