drivers: partition: correct compilation error in VERBOSE mode

Signed-off-by: Yann Gautier <yann.gautier@st.com>
This commit is contained in:
Yann Gautier 2018-10-04 19:04:17 +02:00
parent 424f68dd1d
commit e7f9ab4e5a
1 changed files with 1 additions and 1 deletions

View File

@ -30,7 +30,7 @@ static void dump_entries(int num)
name[len + j] = ' ';
}
name[EFI_NAMELEN - 1] = '\0';
VERBOSE("%d: %s %lx-%lx\n", i + 1, name, list.list[i].start,
VERBOSE("%d: %s %llx-%llx\n", i + 1, name, list.list[i].start,
list.list[i].start + list.list[i].length - 4);
}
}