Diff between e60c28507ded797fdbb8195087e9fc3c15778ae6 and 2d7b98c9e3573fa2b77163d880da45bff3b6664b

Changed Files

File Additions Deletions Status
tools/parser/parser.h +1 -1 modified

Full Patch

diff --git a/tools/parser/parser.h b/tools/parser/parser.h
index f8137de..3df86a3 100644
--- a/tools/parser/parser.h
+++ b/tools/parser/parser.h
@@ -89,7 +89,7 @@ static inline void p_indent(int level, struct frame *f)
 	
 	if (!parser.state) {
 		if (parser.flags & DUMP_TSTAMP)
-			printf("%ld.%ld ", f->ts.tv_sec, f->ts.tv_usec);
+			printf("%8lu.%06lu ", f->ts.tv_sec, f->ts.tv_usec);
 		printf("%c ", (f->in ? '>' : '<'));
 		parser.state = 1;
 	} else