mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-09 17:11:42 +00:00
fiptool: remove always true conditional
The conditional
if (desc != NULL)
...
is always true here because we assert it 6 lines above:
assert(desc != NULL);
Remove the if-conditional and concatenate the printf() calls.
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
This commit is contained in:
@@ -554,12 +554,10 @@ static int info_cmd(int argc, char *argv[])
|
||||
assert(desc != NULL);
|
||||
printf("%s: ", desc->name);
|
||||
image_size = image->size;
|
||||
printf("offset=0x%llX, size=0x%llX",
|
||||
(unsigned long long)image_offset,
|
||||
(unsigned long long)image_size);
|
||||
if (desc != NULL)
|
||||
printf(", cmdline=\"--%s\"",
|
||||
desc->cmdline_name);
|
||||
printf("offset=0x%llX, size=0x%llX, cmdline=\"--%s\"",
|
||||
(unsigned long long)image_offset,
|
||||
(unsigned long long)image_size,
|
||||
desc->cmdline_name);
|
||||
if (verbose) {
|
||||
unsigned char md[SHA256_DIGEST_LENGTH];
|
||||
|
||||
|
||||
Reference in New Issue
Block a user