i
[chise/ruby.git] / chise / iconv.rb
index e6f97cb..5ef044b 100755 (executable)
@@ -80,7 +80,7 @@ class String
   def u32to_i
     return 0 if length == 0
     s = self
-#    return (s[3] << 24 | s[2] << 16 | s[1] << 8 | s[0])
+#   return (s[3] << 24 | s[2] << 16 | s[1] << 8 | s[0])
     return (s[0] << 24 | s[1] << 16 | s[2] << 8 | s[3])
   end
 end