Michal Trojnara wrote:
Here is the ChangeLog entry:
- size_t printf() fixed in stack_info().
Not really, the fix lost parentheses somewhere on the way. The new code reads (int)(VERIFY_AREA-num)*sizeof(u32), etc., which is ((int)(VERIFY_AREA-num))*sizeof(u32), "int * size_t" = size_t on 64-bit platforms.
The attached patch readds the parentheses.
Thanks, Mirek