citrun

watch C/C++ source code execute
Log | Files | Refs | LICENSE

commit 41ee59b3a28c9ab6e1145847990eb4a4a2abeb03
parent 964201b118c9847e685bc89f57a01aa034e786f8
Author: Kyle Milz <kyle@0x30.net>
Date:   Sun,  3 Jul 2016 14:28:03 -0600

lib: use proper printf designator

Diffstat:
Mlib/runtime.c | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/runtime.c b/lib/runtime.c @@ -147,7 +147,7 @@ send_static(int fd) } if (i != nodes_total) - warnx("tu chain inconsistent: %i vs %llu", i, nodes_total); + warnx("tu chain inconsistent: %i vs %j", i, nodes_total); if (w != NULL) warnx("tu chain is longer than before"); } @@ -166,7 +166,7 @@ send_dynamic(int fd) xwrite(fd, w->lines_ptr, w->size * sizeof(uint64_t)); if (i != nodes_total) - warnx("tu chain inconsistent: %i vs %llu", i, nodes_total); + warnx("tu chain inconsistent: %i vs %j", i, nodes_total); if (w != NULL) warnx("tu chain is longer than before"); }