From dfc1fe2b94ad6feca6b5aab27a032d28621731b2 Mon Sep 17 00:00:00 2001 From: Ben Pfaff Date: Wed, 31 Dec 2008 19:52:01 -0800 Subject: [PATCH] Minor style fixes. Thanks to Reid for pointing these out. --- lib/util.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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); } -- 2.30.2