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;
|
host = optarg;
|
||||||
break;
|
break;
|
||||||
case 'e':
|
case 'e':
|
||||||
expire = (time_t)optarg;
|
expire = atoi(optarg);
|
||||||
break;
|
break;
|
||||||
case 'k':
|
case 'k':
|
||||||
keep = 1;
|
keep = 1;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user