View Single Post
Old 05-01-2007, 07:03 PM  
neoxed
Too much time...
 
Join Date: May 2003
Posts: 1,326
Default

Quote:
Originally Posted by o_dog View Post
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
%
neoxed is offline