From: Yu Watanabe Date: Tue, 28 Aug 2018 05:20:08 +0000 (+0900) Subject: sd-boot: fix header guard X-Git-Tag: v240~787^2 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=refs%2Fpull%2F9959%2Fhead;p=thirdparty%2Fsystemd.git sd-boot: fix header guard Follow-up for a42d7cf16515ab0ab62aaeff3aab5750c885b7e7. --- diff --git a/src/boot/efi/util.h b/src/boot/efi/util.h index ee57e0de727..3baec8cd41b 100644 --- a/src/boot/efi/util.h +++ b/src/boot/efi/util.h @@ -32,7 +32,6 @@ CHAR16 *stra_to_path(CHAR8 *stra); CHAR16 *stra_to_str(CHAR8 *stra); EFI_STATUS file_read(EFI_FILE_HANDLE dir, CHAR16 *name, UINTN off, UINTN size, CHAR8 **content, UINTN *content_size); -#endif static inline void FreePoolp(void *p) { FreePool(*(void**) p); @@ -40,3 +39,5 @@ static inline void FreePoolp(void *p) { #define _cleanup_(x) __attribute__((cleanup(x))) #define _cleanup_freepool_ _cleanup_(FreePoolp) + +#endif