From: Chase Southwood Date: Wed, 12 Feb 2014 08:28:35 +0000 (-0600) Subject: Staging: comedi: Correct a few printf format codes X-Git-Tag: v3.15-rc1~139^2~1167 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ecd56ff9d1873fb04846a5847d3c53837084fa69;p=pandora-kernel.git Staging: comedi: Correct a few printf format codes My static checker found some slightly inaccurate format codes in printf calls in comedi_fops.c and drivers/comedi_bond.c. It may be slightly pedantic to change them, but using the correctly corresponding format codes is probably a good idea. All but one were unsigned ints that were formatted with %i, change these to %u, and one was an int formatted with %u, we want to format this with %d. Signed-off-by: Chase Southwood Signed-off-by: Greg Kroah-Hartman --- Reading git-diff-tree failed