Drop atoll() usage. It's not portable.

This commit is contained in:
Sam Hocevar
2010-01-19 12:44:29 +00:00
committed by sam
parent f081c1882f
commit db0788c5f7
+1 -1
View File
@@ -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 */