hashcat / hashcat-utils

Small utilities that are useful in advanced password cracking
MIT License
1.33k stars 353 forks source link

add necessary casts to satisfy -Wextra #10

Closed sdigit closed 8 years ago

sdigit commented 8 years ago

Several files were assigning values to char and uint8_t types from int types, causing warnings when building with -Wextra.

The offending statements are now cast appropriately.

jsteube commented 8 years ago

Thanks!