From c6cab89f760726b30fc39df5f2faed50939e8275 Mon Sep 17 00:00:00 2001 From: Bhaskar Date: Sat, 18 May 2013 12:23:46 +0530 Subject: host/osmocon: fix some printf format specifier in handle_write_dnload From: Bhaskar Signed-off-by: Sylvain Munaut --- src/host/osmocon/osmocon.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/host/osmocon') diff --git a/src/host/osmocon/osmocon.c b/src/host/osmocon/osmocon.c index 01eafcdf..10662917 100644 --- a/src/host/osmocon/osmocon.c +++ b/src/host/osmocon/osmocon.c @@ -647,7 +647,7 @@ static int handle_write_dnload(void) dnload.write_ptr += rc; - printf("%u bytes (%tu/%u)\n", rc, dnload.write_ptr - dnload.data, + printf("%u bytes (%u/%u)\n", rc, dnload.write_ptr - dnload.data, dnload.data_len); return 0; -- cgit v1.2.3