[TELNET] Add missing curly braces to if-statelent
authorTimo Kreuzer <timo.kreuzer@reactos.org>
Sun, 28 Apr 2019 15:05:33 +0000 (17:05 +0200)
committerHervé Poussineau <hpoussin@reactos.org>
Mon, 27 May 2019 11:54:08 +0000 (13:54 +0200)
commitfdf221cb175fc12c6784bd4e9fbda64d69dbb11b
treeb8198c2a0675d068840926e9a87880673db15d73
parent85d7a38c41327fdd40f26145aa6db5a3cd320c5d
[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--)
         ^~~
base/applications/network/telnet/src/tnmain.cpp