From 78399ddc40b4938f201036bee48bef7c64b715f2 Mon Sep 17 00:00:00 2001 From: Nomis101 Date: Thu, 15 Aug 2019 20:31:41 +0200 Subject: [PATCH] Fix -Wduplicate-decl-specifier warnings --- libhb/common.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libhb/common.h b/libhb/common.h index e5f53b993..cd66d6f16 100644 --- a/libhb/common.h +++ b/libhb/common.h @@ -475,7 +475,7 @@ typedef enum *****************************************************************************/ struct hb_job_s { - PRIVATE const char * json; // JSON encoded job string + const char * json; // JSON encoded job string /* ID assigned by UI so it can groups job passes together */ int sequence_id; @@ -858,7 +858,7 @@ struct hb_audio_config_s * These samples should be dropped * when decoding */ PRIVATE hb_rational_t timebase; - PRIVATE const char * name; + const char * name; } in; struct -- 2.40.0