[vlc-commits] commit: Typos (Fabio Ritrovato )
git at videolan.org
git at videolan.org
Thu Mar 11 17:40:38 CET 2010
vlc | branch: master | Fabio Ritrovato <sephiroth87 at videolan.org> | Thu Mar 11 17:40:28 2010 +0100| [78be7ca222d06e3cd85d4cc547573371507e7b07] | committer: Fabio Ritrovato
Typos
> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=78be7ca222d06e3cd85d4cc547573371507e7b07
---
modules/demux/playlist/b4s.c | 2 +-
modules/demux/playlist/podcast.c | 4 ++--
modules/demux/playlist/shoutcast.c | 4 ++--
3 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/modules/demux/playlist/b4s.c b/modules/demux/playlist/b4s.c
index d08814d..6b889f4 100644
--- a/modules/demux/playlist/b4s.c
+++ b/modules/demux/playlist/b4s.c
@@ -199,7 +199,7 @@ static int Demux( demux_t *p_demux )
}
else
{
- msg_Warn( p_demux, "unexpected attribure %s in element %s",
+ msg_Warn( p_demux, "unexpected attribute %s in element %s",
psz_name, psz_elname );
free( psz_value );
}
diff --git a/modules/demux/playlist/podcast.c b/modules/demux/playlist/podcast.c
index 2360adf..df6736e 100644
--- a/modules/demux/playlist/podcast.c
+++ b/modules/demux/playlist/podcast.c
@@ -189,14 +189,14 @@ static int Demux( demux_t *p_demux )
}
else
{
- msg_Dbg( p_demux,"unhandled attribure %s in element %s",
+ msg_Dbg( p_demux,"unhandled attribute %s in element %s",
psz_name, psz_elname );
free( psz_value );
}
}
else
{
- msg_Dbg( p_demux,"unhandled attribure %s in element %s",
+ msg_Dbg( p_demux,"unhandled attribute %s in element %s",
psz_name, psz_elname );
free( psz_value );
}
diff --git a/modules/demux/playlist/shoutcast.c b/modules/demux/playlist/shoutcast.c
index e33b463..14891d1 100644
--- a/modules/demux/playlist/shoutcast.c
+++ b/modules/demux/playlist/shoutcast.c
@@ -196,7 +196,7 @@ static int DemuxGenre( demux_t *p_demux, xml_reader_t *p_xml_reader,
else
{
msg_Warn( p_demux,
- "unexpected attribure %s in element %s",
+ "unexpected attribute %s in element %s",
psz_attrname, psz_eltname );
free( psz_attrvalue );
}
@@ -327,7 +327,7 @@ static int DemuxStation( demux_t *p_demux, xml_reader_t *p_xml_reader,
else
{
msg_Warn( p_demux,
- "unexpected attribure %s in element %s",
+ "unexpected attribute %s in element %s",
psz_attrname, psz_eltname );
free( psz_attrvalue );
}
More information about the vlc-commits
mailing list