diff --git a/[refs] b/[refs] index 7780283b125a..6d3b4d3ac8e4 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: 1d52a4a79188e5567b6c55f67e20a4f1043d10d3 +refs/heads/master: b9d29abd98a2bbeb3a6c49c1607348c92bc80105 diff --git a/trunk/scripts/kconfig/lxdialog/textbox.c b/trunk/scripts/kconfig/lxdialog/textbox.c index 4e5de60a0c0d..264a2b9f320c 100644 --- a/trunk/scripts/kconfig/lxdialog/textbox.c +++ b/trunk/scripts/kconfig/lxdialog/textbox.c @@ -357,10 +357,8 @@ static char *get_line(void) end_reached = 0; while (*page != '\n') { if (*page == '\0') { - if (!end_reached) { - end_reached = 1; - break; - } + end_reached = 1; + break; } else if (i < MAX_LEN) line[i++] = *(page++); else { @@ -373,7 +371,7 @@ static char *get_line(void) if (i <= MAX_LEN) line[i] = '\0'; if (!end_reached) - page++; /* move pass '\n' */ + page++; /* move past '\n' */ return line; }