pyahocorasick
pyahocorasick copied to clipboard
Fix Integer Cast Order
This PR fixes a compiler warning created by negating an unsigned integer before casting it to a signed integer. This is fixed by explicitly casting the unsized integer to a long int
, the type it is implicitly casted to, before negating it.