Re: [PATCH] lib: bootstrap: fix instance of possibly mismatched pointer sizes

2018-12-04 Thread Sascha Hauer
On Tue, Dec 04, 2018 at 10:13:18AM +0100, Ahmad Fatoum wrote: > len was int but &len is passed to read_file(..., size_t *size), > Fix this. > > Signed-off-by: Ahmad Fatoum > --- > lib/bootstrap/disk.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) Applied, thanks Sascha > > diff --g

[PATCH] lib: bootstrap: fix instance of possibly mismatched pointer sizes

2018-12-04 Thread Ahmad Fatoum
len was int but &len is passed to read_file(..., size_t *size), Fix this. Signed-off-by: Ahmad Fatoum --- lib/bootstrap/disk.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/bootstrap/disk.c b/lib/bootstrap/disk.c index a55d5d77f4cf..fd016166e6e4 100644 --- a/lib/bootstr