aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorStephen Hemminger <stephen@networkplumber.org>2019-12-29 09:53:09 -0800
committerStephen Hemminger <stephen@networkplumber.org>2019-12-29 09:53:09 -0800
commit2dda733f6d7b8273a7564f9b2717554df6e95230 (patch)
tree326f28f2890a538fd9e698a660f77d52633f0804
parent2cf4d7af72e308fe40acef5788d1890b6b966035 (diff)
downloadiproute2-2dda733f6d7b8273a7564f9b2717554df6e95230.tar.gz
utils: fix indentation
Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
-rw-r--r--lib/utils.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/utils.c b/lib/utils.c
index bbb3bdcfa..c6f19ce1a 100644
--- a/lib/utils.c
+++ b/lib/utils.c
@@ -1451,7 +1451,7 @@ int get_guid(__u64 *guid, const char *arg)
if (tmp > 255)
return -1;
- *guid |= tmp << (56 - 8 * i);
+ *guid |= tmp << (56 - 8 * i);
}
return 0;