From 05b7dfdcc4893fac9adcbf80bcc3f6a8f8f520c1 Mon Sep 17 00:00:00 2001 From: Lennart Poettering Date: Wed, 25 Jan 2023 18:47:05 +0100 Subject: [PATCH] journal-def: fix type of signature to match the actual field in the Header structure (cherry picked from commit 6fe167d0a77f72086b457125fad6931ca02a4baf) Related: #2183546 --- src/libsystemd/sd-journal/journal-def.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libsystemd/sd-journal/journal-def.h b/src/libsystemd/sd-journal/journal-def.h index 8f994b0178..ab4880761b 100644 --- a/src/libsystemd/sd-journal/journal-def.h +++ b/src/libsystemd/sd-journal/journal-def.h @@ -195,7 +195,7 @@ enum { #endif #define HEADER_SIGNATURE \ - ((const char[]) { 'L', 'P', 'K', 'S', 'H', 'H', 'R', 'H' }) + ((const uint8_t[]) { 'L', 'P', 'K', 'S', 'H', 'H', 'R', 'H' }) #define struct_Header__contents { \ uint8_t signature[8]; /* "LPKSHHRH" */ \