From d2ba67e68b6a7e262be4fac31fecf3977494c4a4 Mon Sep 17 00:00:00 2001 From: Johannes Löthberg Date: Tue, 11 Nov 2014 00:37:11 +0100 Subject: use ‘signed’ instead of ‘int’, redo prototypes MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The flip arguments are implemented so delete comment --- src/utils.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/utils.c') diff --git a/src/utils.c b/src/utils.c index 0441ba2..55de956 100644 --- a/src/utils.c +++ b/src/utils.c @@ -9,7 +9,7 @@ #include "yawa.h" #include "utils.h" -int +signed parse_int(char *string, char *arg) { errno = 0; @@ -33,7 +33,7 @@ parse_int(char *string, char *arg) return (int)val; } -unsigned int +unsigned parse_uint(char *string, char *arg) { errno = 0; -- cgit v1.2.3-54-g00ecf