fix compiler warning - type of refreshdelay

This commit is contained in:
anomen
2017-01-01 21:21:56 +01:00
parent ff82eebb6b
commit b27fb233e4
2 changed files with 2 additions and 2 deletions

View File

@@ -157,7 +157,7 @@ int main(int argc, char **argv) {
sortRecv = false;
break;
case 'd':
refreshdelay = atoi(optarg);
refreshdelay = (time_t) atoi(optarg);
break;
case 'v':
viewMode = atoi(optarg) % VIEWMODE_COUNT;