Skip to content

Commit

Permalink
create_seconds for 10m change to float
Browse files Browse the repository at this point in the history
  • Loading branch information
yedf committed Sep 17, 2016
1 parent 4316aad commit 6087e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion 10m/10m-cli.cc
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ int main(int argc, const char* argv[]) {
int begin_port = atoi(argv[c++]);
int end_port = atoi(argv[c++]);
int conn_count = atoi(argv[c++]);
int create_seconds = atoi(argv[c++]);
float create_seconds = atof(argv[c++]);
int processes = atoi(argv[c++]);
conn_count = conn_count / processes;
int heartbeat_interval = atoi(argv[c++]);
Expand Down

0 comments on commit 6087e78

Please sign in to comment.