From: Ben Pfaff Date: Thu, 1 Jan 2009 03:52:01 +0000 (-0800) Subject: Minor style fixes. X-Git-Url: https://pintos-os.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=dfc1fe2b94ad6feca6b5aab27a032d28621731b2;p=openvswitch Minor style fixes. Thanks to Reid for pointing these out. --- diff --git a/lib/util.c b/lib/util.c index a577ff5b..21cc28d2 100644 --- a/lib/util.c +++ b/lib/util.c @@ -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); }