1
0
mirror of https://github.com/irssi/irssi.git synced 2024-09-29 04:45:57 -04:00

fixup perl side

This commit is contained in:
ailin-nemui 2018-10-04 09:33:07 +02:00
parent ff0daf5870
commit 1e2547eb92

View File

@ -19,9 +19,9 @@ void
rawlog_get_lines(rawlog)
Irssi::Rawlog rawlog
PREINIT:
GSList *tmp;
GList *tmp;
PPCODE:
for (tmp = rawlog->lines; tmp != NULL; tmp = tmp->next) {
for (tmp = rawlog->lines->tail; tmp != NULL; tmp = tmp->prev) {
XPUSHs(sv_2mortal(new_pv(tmp->data)));
}