9
0
Fork 0

edit: sparse fixes

Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Sascha Hauer 2010-10-15 08:23:14 +02:00
parent eff51304a7
commit 30078a2f42
1 changed files with 1 additions and 1 deletions

View File

@ -231,7 +231,7 @@ static int edit_read_file(const char *path)
line->prev = lastline;
if (lastline)
lastline->next = line;
line->next = 0;
line->next = NULL;
lastline = line;
if (!lineend)