Skip to content

Commit

Permalink
[core] Fix an issue in #981 where the newline was missing after print…
Browse files Browse the repository at this point in the history
…ing out (#1084)

the command line, thus leaving the YCSB version on the same line.

(cherry picked from commit 88ffdbb)
  • Loading branch information
manolama authored and busbey committed May 24, 2018
1 parent 7ecbbc3 commit 9d428b6
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions core/src/main/java/com/yahoo/ycsb/Client.java
Original file line number Diff line number Diff line change
Expand Up @@ -977,6 +977,7 @@ private static Properties parseArguments(String[] args) {
for (String arg : args) {
System.err.print(" " + arg);
}
System.err.println();

Properties fileprops = new Properties();
int argindex = 0;
Expand Down

0 comments on commit 9d428b6

Please sign in to comment.