From db0788c5f706245d75b4077b3b86aa3ad07aadb1 Mon Sep 17 00:00:00 2001 From: Sam Hocevar Date: Tue, 19 Jan 2010 12:44:29 +0000 Subject: [PATCH] Drop atoll() usage. It's not portable. --- src/zzuf.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/zzuf.c b/src/zzuf.c index b17d54e..a9cae52 100644 --- a/src/zzuf.c +++ b/src/zzuf.c @@ -333,7 +333,7 @@ int main(int argc, char *argv[]) case 't': /* --max-time */ if(myoptarg[0] == '=') myoptarg++; - opts->maxtime = (int64_t)atoll(myoptarg) * 1000000; + opts->maxtime = (int64_t)atoi(myoptarg) * 1000000; break; #if defined HAVE_SETRLIMIT && defined ZZUF_RLIMIT_CPU case 'T': /* --max-cputime */