Quote:
Originally Posted by o_dog
the crc32 is returned in decimal value
real crc32 of a file: b91a00c8
crc32 returned by io: -1189478200
|
So? Just convert it. It's actually a lot more practical to return it in integer form.
Code:
% set crc -1189478200
-1189478200
% set crcHex [format %08X $crc]
B91A00C8
% puts "The hexidecimal value is: $crcHex"
The hexidecimal value is: B91A00C8
%