Adjust format string to fix build.

This commit is contained in:
John Baldwin 2018-01-18 00:24:05 +00:00
parent 449af04fc9
commit 66f8917bea
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=328104

View File

@ -67,7 +67,7 @@ ef_reloc(struct elf_file *ef, const void *reldata, int reltype, Elf_Off relbase,
*where = relbase + addend;
break;
default:
warnx("unhandled relocation type %lu", rtype);
warnx("unhandled relocation type %u", rtype);
}
return (0);
}