tweaks: line numbers are ssize_t, not int

master
David Lawrence Ramsey 2017-01-07 15:36:57 -06:00 committed by Benno Schulenberg
parent a89437219d
commit c38f571d4b
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ void do_cut_till_eof(void)
/* Copy text from the cutbuffer into the current filestruct. */
void do_uncut_text(void)
{
int was_lineno = openfile->current->lineno;
ssize_t was_lineno = openfile->current->lineno;
assert(openfile->current != NULL && openfile->current->data != NULL);