add one last breakage fix

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2865 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
master
David Lawrence Ramsey 2005-07-15 00:08:23 +00:00
parent 0532296a10
commit 26ee759503
1 changed files with 1 additions and 1 deletions

View File

@ -186,7 +186,7 @@ void renumber(filestruct *fileptr)
assert(fileptr != NULL && fileptr->prev != NULL); assert(fileptr != NULL && fileptr->prev != NULL);
line = (fileptr->prev == NULL) ? 1 : fileptr->prev->lineno; line = (fileptr->prev == NULL) ? 0 : fileptr->prev->lineno;
assert(fileptr != fileptr->next); assert(fileptr != fileptr->next);