mirror of https://github.com/torvalds/linux.git
When using the x32 toolchain, compilation fails because the printf
specifier "%lx" (long), doesn't match the type of the "checksum" variable
(long long). Fix this by changing the printf specifier to "%llx" and
casting "checksum" to unsigned long long.
Fixes:
|
||
|---|---|---|
| .. | ||
| arch.h | ||
| builtin.h | ||
| cfi.h | ||
| check.h | ||
| checksum.h | ||
| checksum_types.h | ||
| disas.h | ||
| elf.h | ||
| endianness.h | ||
| klp.h | ||
| objtool.h | ||
| orc.h | ||
| special.h | ||
| trace.h | ||
| util.h | ||
| warn.h | ||