From: marshmellow42 Date: Thu, 28 Jan 2016 05:27:53 +0000 (-0500) Subject: fix print clock as decimal instead of uint8_t X-Git-Tag: v2.3.0~10^2 X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/proxmark3-svn/commitdiff_plain/9fc602c835d9698151c197ced70198cd687eab65 fix print clock as decimal instead of uint8_t --- 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(); }