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.