Weh -- use the correct type.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4873 35c25a1d-7b9e-4130-9fde-d3aeb78583b8master
parent
24bc59f5c2
commit
678b221c36
|
@ -1688,9 +1688,9 @@ void thanks_for_all_the_fish(void)
|
||||||
free(f);
|
free(f);
|
||||||
}
|
}
|
||||||
while (sclist != NULL) {
|
while (sclist != NULL) {
|
||||||
subnfunc *f = sclist;
|
sc *s = sclist;
|
||||||
sclist = sclist->next;
|
sclist = sclist->next;
|
||||||
free(f);
|
free(s);
|
||||||
}
|
}
|
||||||
#ifndef DISABLE_NANORC
|
#ifndef DISABLE_NANORC
|
||||||
if (homedir != NULL)
|
if (homedir != NULL)
|
||||||
|
|
Loading…
Reference in New Issue