Covert tabs into spaces. Found by inspection.
Signed-off-by: Andy Zhou <[email protected]>
---
lib/util.c | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
diff --git a/lib/util.c b/lib/util.c
index c7e2b77..9473985 100644
--- a/lib/util.c
+++ b/lib/util.c
@@ -651,11 +651,11 @@ str_to_uint(const char *s, int base, unsigned int *u)
long long ll;
bool ok = str_to_llong(s, base, &ll);
if (!ok || ll < 0 || ll > UINT_MAX) {
- *u = 0;
- return false;
+ *u = 0;
+ return false;
} else {
- *u = ll;
- return true;
+ *u = ll;
+ return true;
}
}
@@ -799,7 +799,7 @@ parse_int_string(const char *s, uint8_t *valuep, int
field_width, char **tail)
free:
free(hexit_str);
- return err;
+ return err;
}
errno = 0;
--
1.9.1
_______________________________________________
dev mailing list
[email protected]
http://openvswitch.org/mailman/listinfo/dev