changeset 313:72c299437fde

Converting from integer, not string.
author Edho Arief <edho@myconan.net>
date Sun, 04 Mar 2012 12:20:33 +0000
parents 592605e4d3bb
children 8f6885874144
files bin/cek.rb
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/bin/cek.rb	Wed Feb 29 17:48:05 2012 +0000
+++ b/bin/cek.rb	Sun Mar 04 12:20:33 2012 +0000
@@ -10,5 +10,5 @@
 		crc = Zlib.crc32(line,crc)
 	end
 	file.close
-	printf("%s %08X\n", filename, crc.to_s)
+	printf("%s %08X\n", filename, crc.to_i)
 end