From 9fc602c835d9698151c197ced70198cd687eab65 Mon Sep 17 00:00:00 2001 From: marshmellow42 Date: Thu, 28 Jan 2016 00:27:53 -0500 Subject: [PATCH] fix print clock as decimal instead of uint8_t --- client/cmddata.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/cmddata.c b/client/cmddata.c index 05c495d9..6dd96ab0 100644 --- a/client/cmddata.c +++ b/client/cmddata.c @@ -982,7 +982,7 @@ int FSKrawDemod(const char *Cmd, bool verbose) // Now output the bitstream to the scrollback by line of 16 bits if (verbose || g_debugMode) { - PrintAndLog("\nUsing Clock:%d, invert:%d, fchigh:%d, fclow:%d", rfLen, invert, fchigh, fclow); + PrintAndLog("\nUsing Clock:%hu, invert:%hu, fchigh:%hu, fclow:%hu", rfLen, invert, fchigh, fclow); PrintAndLog("%s decoded bitstream:",GetFSKType(fchigh,fclow,invert)); printDemodBuff(); } -- 2.39.2