Reduce number of compile-time warnings (continued)

This commit is contained in:
Joseph Henry
2021-04-30 16:38:21 -07:00
parent 6763ced6f5
commit 3e304cb25a
8 changed files with 12 additions and 12 deletions

View File

@@ -20,7 +20,7 @@ int main(int argc, char** argv)
char* storage_path = argv[1];
long long int net_id = strtoull(argv[2], NULL, 16); // At least 64 bits
char* local_addr = argv[3];
int local_port = atoi(argv[4]);
unsigned int local_port = atoi(argv[4]);
int fd, accfd;
int err = ZTS_ERR_OK;