aboutsummaryrefslogtreecommitdiff
path: root/toys/pending/ip.c
diff options
context:
space:
mode:
authorElliott Hughes <enh@google.com>2019-01-22 18:21:23 -0800
committerRob Landley <rob@landley.net>2019-01-22 22:20:46 -0600
commit154221aba3bd1407ea60ef6b3d73a59143182e36 (patch)
tree031477aa20c2d2230758089b8d82bb2ceb367237 /toys/pending/ip.c
parentbbadc5e14136a4a2011080c08e064108d71e1429 (diff)
downloadtoybox-154221aba3bd1407ea60ef6b3d73a59143182e36.tar.gz
Whitespace: remove tabs from indentation.
I accidentally added a tab in xargs.c, so as penance I'll clean up all the tabs.
Diffstat (limited to 'toys/pending/ip.c')
-rw-r--r--toys/pending/ip.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/toys/pending/ip.c b/toys/pending/ip.c
index 90f73308..68d4c2ca 100644
--- a/toys/pending/ip.c
+++ b/toys/pending/ip.c
@@ -1964,7 +1964,7 @@ static int route_update(char **argv, unsigned int route_flags)
char* ptr;
if (!*++argv) show_iproute_help();
metric = strtoul(*argv, &ptr, 0);
- if (!(!*ptr && metric <= 0xFFFFFFFFUL))
+ if (!(!*ptr && metric <= 0xFFFFFFFFUL))
error_exit("Invalid argument metric %s.",*argv);
else
res = metric;