Skip to content

Commit

Permalink
Fix line breaks
Browse files Browse the repository at this point in the history
  • Loading branch information
zakki committed Jan 20, 2018
1 parent f9e89a1 commit 62fb747
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/Command.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -154,14 +154,14 @@ AnalyzeCommand( int argc, char **argv )
SetNoExpand(true);
break;
case COMMAND_DEVICE_ID:
{
vector<int> device_ids;
char copy[BUF_SIZE];
STRCPY(copy, BUF_SIZE, argv[++i]);
char* token = strtok(copy, ",");
while (token != NULL) {
device_ids.push_back(atoi(token));
token = strtok(NULL, ",");
{
vector<int> device_ids;
char copy[BUF_SIZE];
STRCPY(copy, BUF_SIZE, argv[++i]);
char* token = strtok(copy, ",");
while (token != NULL) {
device_ids.push_back(atoi(token));
token = strtok(NULL, ",");
}
SetDeviceIds(device_ids);
}
Expand Down

0 comments on commit 62fb747

Please sign in to comment.