change args output so not to miss trailing spaces

This commit is contained in:
Doug MacEachern 2004-07-28 20:51:24 +00:00
parent 17ef450dd8
commit a35333223b
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ public class ShowArgs extends SigarCommandBase {
}
for (int i=0; i<argv.length; i++) {
println(" " + i + "=" + argv[i]);
println(" " + i + "=>" + argv[i] + "<=");
}
}