diff options
Diffstat (limited to 'networking')
-rw-r--r-- | networking/telnet.c | 2 | ||||
-rw-r--r-- | networking/wget.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/networking/telnet.c b/networking/telnet.c index 5b8c885..628e2e6 100644 --- a/networking/telnet.c +++ b/networking/telnet.c @@ -607,7 +607,7 @@ int telnet_main(int argc, char** argv) #endif #ifdef CONFIG_FEATURE_TELNET_TTYPE - ttype = getenv("TERM"); + ttype = getenv("TERM"); #endif memset(&G, 0, sizeof G); diff --git a/networking/wget.c b/networking/wget.c index 425abc1..c163209 100644 --- a/networking/wget.c +++ b/networking/wget.c @@ -676,7 +676,7 @@ getttywidth(void) { int width=0; get_terminal_width_height(0, &width, NULL); - return (width); + return width; } static void |