Voting

: seven minus zero?
(Example: nine)

The Note You're Voting On

Clifford dot ct at gmail dot com
12 years ago
The crc32() function can return a signed integer in certain environments. Assuming that it will always return an unsigned integer is not portable.

Depending on your desired behavior, you should probably use sprintf() on the result or the generic hash() instead. Also note that integer arithmetic operators do not have the precision to work correctly with the integer output.

<< Back to user notes page

To Top