mirror of
https://github.com/irssi/irssi.git
synced 2026-08-08 19:30:15 +02:00
fixup perl side
This commit is contained in:
parent
ff0daf5870
commit
1e2547eb92
1 changed files with 2 additions and 2 deletions
|
|
@ -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)));
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue