Fix warning (and obviously broken code)
77: warning: cast from pointer to integer of different size
This commit is contained in:
parent
d27f1d4c12
commit
7b2df3846d
@ -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;
|
||||
|
Loading…
x
Reference in New Issue
Block a user