mirror of
https://github.com/reactos/reactos.git
synced 2025-05-13 14:20:31 +00:00
[TELNET] Add missing curly braces to if-statelent
Fixes GCC 8 warning: base/applications/network/telnet/src/tnmain.cpp:171:8: error: this 'for' clause does not guard... [-Werror=misleading-indentation] for (j = cursor; j >= 0; j--) ^~~ base/applications/network/telnet/src/tnmain.cpp:174:9: note: ...this statement, but the latter is misleadingly indented as if it were guarded by the 'for' for (k = --j; k >= 0; k--) ^~~
This commit is contained in:
parent
85d7a38c41
commit
fdf221cb17
1 changed files with 12 additions and 8 deletions
|
@ -146,14 +146,18 @@ struct cmdHistory * cfgets (char *buf, unsigned int length, struct cmdHistory *c
|
||||||
if (InputRecord.Event.KeyEvent.dwControlKeyState &
|
if (InputRecord.Event.KeyEvent.dwControlKeyState &
|
||||||
(LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED)) {
|
(LEFT_CTRL_PRESSED | RIGHT_CTRL_PRESSED)) {
|
||||||
unsigned int j, k;
|
unsigned int j, k;
|
||||||
for (j = cursor; j <= current; j++)
|
for (j = cursor; j <= current; j++)
|
||||||
if (buf[j+1] == ' ' || (j+1)==current)
|
{
|
||||||
break;
|
if (buf[j + 1] == ' ' || (j + 1) == current)
|
||||||
for (k = ++j; k <= current; k++)
|
break;
|
||||||
if (buf[k] != ' ' || k == current) {
|
for (k = ++j; k <= current; k++)
|
||||||
cursor = k == current ? --k : k;
|
{
|
||||||
break;
|
if (buf[k] != ' ' || k == current) {
|
||||||
}
|
cursor = k == current ? --k : k;
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
} else
|
} else
|
||||||
cursor++;
|
cursor++;
|
||||||
MustRefresh = 1;
|
MustRefresh = 1;
|
||||||
|
|
Loading…
Reference in a new issue