Commit 678b221c authored by Benno Schulenberg's avatar Benno Schulenberg
Browse files

Weh -- use the correct type.

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4873 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
No related merge requests found
Showing with 2 additions and 2 deletions
+2 -2
......@@ -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)
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment