Ariel Otilibili has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/85787?usp=email )
Change subject: lib: Replace 'unsigned long int' by 'unsigned long' ......................................................................
lib: Replace 'unsigned long int' by 'unsigned long'
As suggested by the linter:
Prefer 'unsigned long' over 'unsigned long int' as the int is unnecessary
Link: https://qa.coreboot.org/job/coreboot-untested-files/lastSuccessfulBuild/arti... Change-Id: I93d951eac69150b6cd73c9e56cb02a73c5118340 Signed-off-by: Ariel Otilibili otilibil@eurecom.fr --- M src/lib/ubsan.c 1 file changed, 2 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/87/85787/1
diff --git a/src/lib/ubsan.c b/src/lib/ubsan.c index 560493c..456a272 100644 --- a/src/lib/ubsan.c +++ b/src/lib/ubsan.c @@ -43,8 +43,8 @@ if (!location || !location->filename) location = &unknown_location; printk(BIOS_ERR, "%s %s:%lu:%lu\n", violation, location->filename, - (unsigned long int)location->line, - (unsigned long int)location->column); + (unsigned long)location->line, + (unsigned long)location->column); die("ubsan: unrecoverable error.\n"); }