Commit 826fbea8 authored by David Lawrence Ramsey's avatar David Lawrence Ramsey
Browse files

add missing blank lines

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2895 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent e3bae98a
Showing with 3 additions and 0 deletions
+3 -0
......@@ -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);
}
......
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