summaryrefslogtreecommitdiffstats
path: root/m_struct.c
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-28 14:28:38 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2007-07-28 14:28:38 +0000
commit22fc24fe567029303c32799b5c7590e6dbb75fd8 (patch)
tree6ff62d49b378d63434cc510deb64f1dc078c576e /m_struct.c
parentf5a10ea82fc3f4e562fde383dd6b42df14e3d4e8 (diff)
downloadmpv-22fc24fe567029303c32799b5c7590e6dbb75fd8.tar.bz2
mpv-22fc24fe567029303c32799b5c7590e6dbb75fd8.tar.xz
cosmetics: misc typo fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@23893 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'm_struct.c')
-rw-r--r--m_struct.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/m_struct.c b/m_struct.c
index f6b114ec12..347ba11fc2 100644
--- a/m_struct.c
+++ b/m_struct.c
@@ -34,7 +34,7 @@ m_struct_alloc(m_struct_t* st) {
// Check the struct fields
for(i = 0 ; st->fields[i].name ; i++) {
if(st->fields[i].type->flags & M_OPT_TYPE_INDIRECT) {
- mp_msg(MSGT_CFGPARSER, MSGL_ERR,"Struct %s->%s: option type with the indirect flag are forbiden\n",st->name,st->fields[i].name);
+ mp_msg(MSGT_CFGPARSER, MSGL_ERR,"Struct %s->%s: Option types with the indirect flag are forbidden.\n",st->name,st->fields[i].name);
return NULL;
}
}