drivers/intel/fsp2_0/hob_verify: Correct conversion specifier
commit8eed67b3ab1a30dc71a5c279b2c10234a2b41a77
authorPaul Menzel <paulepanter@users.sourceforge.net>
Sat, 21 Oct 2017 09:22:57 +0000 (21 11:22 +0200)
committerMartin Roth <martinroth@google.com>
Fri, 3 Nov 2017 15:23:06 +0000 (3 15:23 +0000)
treebd489e3fe8a553b53abd4eeb54a9b4ffbf194760
parent11015342b4fb7a799bfdf7529da2f190ad2c447c
drivers/intel/fsp2_0/hob_verify: Correct conversion specifier

Use the correct conversion specifier for `size_t` to fix the error
below.

```
src/drivers/intel/fsp2_0/hob_verify.c:31:4: error: format '%lx' expects \
        argument of type 'long unsigned int', but argument 4 has type \
        'size_t {aka unsigned int}' [-Werror=format=]
    "FSP_BOOTLOADER_TOLUM_SIZE: 0x%08llx < 0x%08lx\n",
    ^
    range_entry_size(&tolum), cbmem_overhead_size());
                              ~~~~~~~~~~~~~~~~~~~~~
```

Found-by: gcc (Debian 7.2.0-8) 7.2.0
Change-Id: I4631672211095f9934925e9bd230ccbf63c736af
Signed-off-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-on: https://review.coreboot.org/22131
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Martin Roth <martinroth@google.com>
src/drivers/intel/fsp2_0/hob_verify.c