From mboxrd@z Thu Jan 1 00:00:00 1970 From: Takashi Iwai Subject: Re: [PATCH 1/3] ascenario: Fix typedef for snd_scenario_t Date: Tue, 06 Oct 2009 18:04:15 +0200 Message-ID: References: <20091006151232.GF3181@dodger.lab.datenfreihafen.org> <1254844471-12987-2-git-send-email-stefan@datenfreihafen.org> Mime-Version: 1.0 (generated by SEMI 1.14.6 - "Maruoka") Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mx1.suse.de (cantor.suse.de [195.135.220.2]) by alsa0.perex.cz (Postfix) with ESMTP id A1A80103812 for ; Tue, 6 Oct 2009 18:04:15 +0200 (CEST) In-Reply-To: <1254844471-12987-2-git-send-email-stefan@datenfreihafen.org> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: alsa-devel-bounces@alsa-project.org Errors-To: alsa-devel-bounces@alsa-project.org To: Stefan Schmidt Cc: alsa-devel@alsa-project.org, Stefan Schmidt List-Id: alsa-devel@alsa-project.org At Tue, 6 Oct 2009 17:54:29 +0200, Stefan Schmidt wrote: > > From: Stefan Schmidt > > Signed-off-by: Stefan Schmidt > --- > include/ascenario.h | 2 +- > 1 files changed, 1 insertions(+), 1 deletions(-) > > diff --git a/include/ascenario.h b/include/ascenario.h > index 003eabe..0c5acb9 100644 > --- a/include/ascenario.h > +++ b/include/ascenario.h > @@ -128,7 +128,7 @@ extern "C" { > #define SND_SCN_INT_QOS 1 > > /** Scenario container */ > -typedef snd_scenario_t snd_scenario_t; > +typedef struct _snd_scenario_t snd_scenario_t; I would define like typedef struct snd_scenario snd_scenario_t; Takashi