Minor style fixes.
authorBen Pfaff <blp@nicira.com>
Thu, 1 Jan 2009 03:52:01 +0000 (19:52 -0800)
committerBen Pfaff <blp@nicira.com>
Thu, 1 Jan 2009 03:52:01 +0000 (19:52 -0800)
Thanks to Reid for pointing these out.

lib/util.c

index a577ff5b9b61c22e39c41a13ec0bc993c006094a..21cc28d2b98638d4c2fa094127cd1bb7d551292a 100644 (file)
@@ -284,12 +284,14 @@ str_to_uint(const char *s, int base, unsigned int *u)
     return str_to_int(s, base, (int *) u);
 }
 
-bool str_to_ulong(const char *s, int base, unsigned long *ul)
+bool
+str_to_ulong(const char *s, int base, unsigned long *ul)
 {
     return str_to_long(s, base, (long *) ul);
 }
 
-bool str_to_ullong(const char *s, int base, unsigned long long *ull)
+bool
+str_to_ullong(const char *s, int base, unsigned long long *ull)
 {
     return str_to_llong(s, base, (long long *) ull);
 }