[*] output int as unsigned

git-svn-id: https://pykd.svn.codeplex.com/svn@59109 9b283d60-5439-405e-af05-b73fd8c4d996
This commit is contained in:
SND\EreTIk_cp 2010-12-23 12:01:46 +00:00
parent 5968cf04a1
commit d766568252

View File

@ -28,4 +28,4 @@ if __name__ == "__main__":
if (0 == lstActiveProcesses.count(processFromTable)): if (0 == lstActiveProcesses.count(processFromTable)):
dprintln("!process 0x%X removed from PsActiveProcessHead" % processFromTable) dprintln("!process 0x%X removed from PsActiveProcessHead" % processFromTable)
founded += 1 founded += 1
dprintln("checked 0x%x processes" % len(lstProcessTable) + (", %u hidden" % founded if (0 != founded) else ", hidden not found")) dprintln("checked %u processes" % len(lstProcessTable) + (", %u hidden" % founded if (0 != founded) else ", hidden not found"))