1*4882a593SmuzhiyunFrom 3bd5c2d951421a89f76b2423e5810862f53486c1 Mon Sep 17 00:00:00 2001
2*4882a593SmuzhiyunFrom: =?UTF-8?q?Beno=C3=AEt=20Allard?= <benoit.allard@greenbone.net>
3*4882a593SmuzhiyunDate: Fri, 9 Jun 2017 11:59:43 +0200
4*4882a593SmuzhiyunSubject: [PATCH] Update the longjump calls to fit the new declaration
5*4882a593SmuzhiyunMIME-Version: 1.0
6*4882a593SmuzhiyunContent-Type: text/plain; charset=UTF-8
7*4882a593SmuzhiyunContent-Transfer-Encoding: 8bit
8*4882a593Smuzhiyun
9*4882a593SmuzhiyunSigned-off-by: Benoît Allard <benoit.allard@greenbone.net>
10*4882a593Smuzhiyun---
11*4882a593Smuzhiyun efi/main.c | 3 +--
12*4882a593Smuzhiyun 1 file changed, 1 insertion(+), 2 deletions(-)
13*4882a593Smuzhiyun
14*4882a593Smuzhiyundiff --git a/efi/main.c b/efi/main.c
15*4882a593Smuzhiyunindex 208fee4f..71d31a5c 100644
16*4882a593Smuzhiyun--- a/efi/main.c
17*4882a593Smuzhiyun+++ b/efi/main.c
18*4882a593Smuzhiyun@@ -10,7 +10,6 @@
19*4882a593Smuzhiyun #include <syslinux/firmware.h>
20*4882a593Smuzhiyun #include <syslinux/linux.h>
21*4882a593Smuzhiyun #include <sys/ansi.h>
22*4882a593Smuzhiyun-#include <setjmp.h>
23*4882a593Smuzhiyun
24*4882a593Smuzhiyun #include "efi.h"
25*4882a593Smuzhiyun #include "fio.h"
26*4882a593Smuzhiyun@@ -30,7 +29,7 @@ uint32_t timer_irq;
27*4882a593Smuzhiyun __export uint8_t KbdMap[256];
28*4882a593Smuzhiyun char aux_seg[256];
29*4882a593Smuzhiyun
30*4882a593Smuzhiyun-static jmp_buf load_error_buf;
31*4882a593Smuzhiyun+static jmp_buf *load_error_buf;
32*4882a593Smuzhiyun
33*4882a593Smuzhiyun static inline EFI_STATUS
34*4882a593Smuzhiyun efi_close_protocol(EFI_HANDLE handle, EFI_GUID *guid, EFI_HANDLE agent,
35*4882a593Smuzhiyun--
36*4882a593Smuzhiyun2.13.3
37*4882a593Smuzhiyun
38