Skip to content

Commit

Permalink
fr: fix build error, use string instead of char
Browse files Browse the repository at this point in the history
  • Loading branch information
frehberg committed Jun 5, 2014
1 parent bab60bd commit dbd23de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Main/CommandLineInterface.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -524,7 +524,7 @@ namespace TrueCrypt
arr.Add (L"");
continue;
}
arr.Last() += token.empty() ? L',' : token;
arr.Last() += token.empty() ? L"," : token;
}
else
arr.Add (token);
Expand Down

0 comments on commit dbd23de

Please sign in to comment.