From cf4f9bad41bc09f33f682c246c4ce287ea7e0458 Mon Sep 17 00:00:00 2001 From: Richard Fuchs Date: Tue, 23 Jan 2024 13:08:02 -0500 Subject: [PATCH] MT#59038 remove pointless double struct Change-Id: I17e60a7c37de221ee8973f5237a5fe44c32d59cb --- include/recording.h | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/include/recording.h b/include/recording.h index 38da4925f..b69607349 100644 --- a/include/recording.h +++ b/include/recording.h @@ -45,10 +45,8 @@ struct recording_stream_proc { }; struct recording { - struct { - struct recording_pcap pcap; - struct recording_proc proc; - }; + struct recording_pcap pcap; + struct recording_proc proc; }; struct recording_stream {