Merge pull request #1626 from Yann-lms/partition_verbose

drivers: partition: correct compilation error in VERBOSE mode
This commit is contained in:
Dimitris Papastamos 2018-10-12 17:45:56 +01:00 committed by GitHub
commit 0a09313ec7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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);
}
}