summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBhaskar <niceguy108@gmail.com>2013-05-18 12:23:46 +0530
committerSylvain Munaut <tnt@246tNt.com>2013-05-23 08:25:18 +0200
commitc6cab89f760726b30fc39df5f2faed50939e8275 (patch)
treebd14f6391ad24816e86013d9aae4f92f49db179d
parent25293204200f4dadcd5ffcbe0f884b06829a49c7 (diff)
host/osmocon: fix some printf format specifier in handle_write_dnload
From: Bhaskar <niceguy108@gmail.com> Signed-off-by: Sylvain Munaut <tnt@246tNt.com>
-rw-r--r--src/host/osmocon/osmocon.c2
1 files changed, 1 insertions, 1 deletions
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;