Fix warning (and obviously broken code)

77: warning: cast from pointer to integer of different size
This commit is contained in:
Jonathan Lemon 2001-06-16 07:15:48 +00:00
parent d27f1d4c12
commit 7b2df3846d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=78343

View File

@ -74,7 +74,7 @@ main(int argc, char **argv) {
host = optarg;
break;
case 'e':
expire = (time_t)optarg;
expire = atoi(optarg);
break;
case 'k':
keep = 1;