Patrick Rudolph has submitted this change. ( https://review.coreboot.org/c/coreboot/+/35613 )
Change subject: lib/bootsplash: Fix compilation ......................................................................
lib/bootsplash: Fix compilation
Add missing include. Tested on Supermicro X11SSH-TF.
Change-Id: Id0c80ac646001a497e96cae4d48a0f09762eb936 Signed-off-by: Patrick Rudolph patrick.rudolph@9elements.com Reviewed-on: https://review.coreboot.org/c/coreboot/+/35613 Reviewed-by: Arthur Heymans arthur@aheymans.xyz Reviewed-by: Patrick Georgi pgeorgi@google.com Reviewed-by: Paul Menzel paulepanter@users.sourceforge.net Tested-by: build bot (Jenkins) no-reply@coreboot.org --- M src/lib/bootsplash.c 1 file changed, 1 insertion(+), 0 deletions(-)
Approvals: build bot (Jenkins): Verified Patrick Georgi: Looks good to me, approved Paul Menzel: Looks good to me, but someone else must approve Arthur Heymans: Looks good to me, approved Name of user not set #1002476: Looks good to me, but someone else must approve
diff --git a/src/lib/bootsplash.c b/src/lib/bootsplash.c index 812a3b7..8364afa 100644 --- a/src/lib/bootsplash.c +++ b/src/lib/bootsplash.c @@ -18,6 +18,7 @@ #include <console/console.h> #include <endian.h> #include <bootsplash.h> +#include <stdlib.h>
#include "jpeg.h"