From fd6696e46a4137cfdffeacf9e79348164e4bfea3 Mon Sep 17 00:00:00 2001 From: "J. Alexander Treuman" Date: Wed, 21 Jun 2006 16:22:46 +0000 Subject: Silly jat, don't use newMpdTag as a variable name! git-svn-id: https://svn.musicpd.org/mpd/trunk@4279 09075e82-0dd4-0310-85a5-a0d7c8717e4f --- src/inputPlugins/mp3_plugin.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/inputPlugins') diff --git a/src/inputPlugins/mp3_plugin.c b/src/inputPlugins/mp3_plugin.c index 30d1cfe02..605c10aff 100644 --- a/src/inputPlugins/mp3_plugin.c +++ b/src/inputPlugins/mp3_plugin.c @@ -260,7 +260,7 @@ static void mp3_parseId3Tag(mp3DecodeData * data, signed long tagsize, MpdTag ** id3_length_t count; id3_byte_t const *id3_data; id3_byte_t * allocated = NULL; - MpdTag * newMpdTag; + MpdTag * tmpMpdTag; count = data->stream.bufend - data->stream.this_frame; @@ -300,10 +300,10 @@ static void mp3_parseId3Tag(mp3DecodeData * data, signed long tagsize, MpdTag ** if(!id3Tag) goto fail; if(mpdTag) { - newMpdTag = parseId3Tag(id3Tag); - if(newMpdTag) { + tmpMpdTag = parseId3Tag(id3Tag); + if(tmpMpdTag) { if(*mpdTag) freeMpdTag(*mpdTag); - *mpdTag = newMpdTag; + *mpdTag = tmpMpdTag; } } -- cgit v1.2.3