add missing blank lines

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2895 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2005-07-19 04:50:55 +00:00
parent e3bae98aab
commit 826fbea8e1
1 changed files with 3 additions and 0 deletions

View File

@ -140,6 +140,7 @@ void delete_node(filestruct *fileptr)
if (fileptr->data != NULL)
free(fileptr->data);
free(fileptr);
}
@ -162,6 +163,7 @@ filestruct *copy_filestruct(const filestruct *src)
src = src->next;
}
copy->next = NULL;
return head;
@ -176,6 +178,7 @@ void free_filestruct(filestruct *src)
src = src->next;
delete_node(src->prev);
}
delete_node(src);
}