diff src/com/tmate/hgkit/ll/HgDirstate.java @ 14:442dc6ee647b

Show correct time
author Artem Tikhomirov <tikhomirov.artem@gmail.com>
date Sun, 26 Dec 2010 14:56:08 +0100
parents 181fccc176ef
children 02ee376bee79
line wrap: on
line diff
--- a/src/com/tmate/hgkit/ll/HgDirstate.java	Sun Dec 26 03:21:17 2010 +0100
+++ b/src/com/tmate/hgkit/ll/HgDirstate.java	Sun Dec 26 14:56:08 2010 +0100
@@ -96,7 +96,7 @@
 		char[] x = new char[] {'n', 'a', 'r', 'm' };
 		for (int i = 0; i < all.length; i++) {
 			for (Record r : all[i]) {
-				System.out.printf("%c %3o%6d %30tc\t\t%s", x[i], r.mode, r.size, (long) r.time, r.name1);
+				System.out.printf("%c %3o%6d %30tc\t\t%s", x[i], r.mode, r.size, (long) r.time * 1000, r.name1);
 				if (r.name2 != null) {
 					System.out.printf(" --> %s", r.name2);
 				}