mirror of
https://github.com/radareorg/radare2.git
synced 2025-01-23 06:14:53 +00:00
9e88e1b703
* anal: fix long vs int size issue on 32bit machines The %lld format expects a long long, but an int was provided on the stack, so the snprintf was accessing a wrong memory to print %s. Convert the first argument to long long to solve the issue. * bin: use st64 instead of long long