commit 678b221c36b8cbbaef60fc40f2973993647403d2
parent 24bc59f5c2d1f0d20ed37c3060d9dfad48800526
Author: Benno Schulenberg <bensberg@justemail.net>
Date: Tue, 13 May 2014 18:31:13 +0000
Weh -- use the correct type.
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4873 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/global.c b/src/global.c
@@ -1688,9 +1688,9 @@ void thanks_for_all_the_fish(void)
free(f);
}
while (sclist != NULL) {
- subnfunc *f = sclist;
+ sc *s = sclist;
sclist = sclist->next;
- free(f);
+ free(s);
}
#ifndef DISABLE_NANORC
if (homedir != NULL)