From 2d7b98c9e3573fa2b77163d880da45bff3b6664b Mon Sep 17 00:00:00 2001 From: Max Krasnyansky Date: Fri, 31 May 2002 18:27:43 +0000 Subject: [PATCH] hcidump: Timestamp is unsigned --- tools/parser/parser.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/parser/parser.h b/tools/parser/parser.h index f8137deb7..3df86a39f 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 -- 2.47.3