diff options
author | phintuka <phintuka> | 2007-01-20 23:35:19 +0000 |
---|---|---|
committer | phintuka <phintuka> | 2007-01-20 23:35:19 +0000 |
commit | 9664d43f9eb260e9af3e58b199b9d0fbb7e665dd (patch) | |
tree | 6b0edab273151959b883ae4ee5b32ec5327f33e0 | |
parent | 617d054372db2cbb19299db4caee92ba46db9d25 (diff) | |
download | xineliboutput-9664d43f9eb260e9af3e58b199b9d0fbb7e665dd.tar.gz xineliboutput-9664d43f9eb260e9af3e58b199b9d0fbb7e665dd.tar.bz2 |
Show warning message if post plugin does not support given parameter(s)
-rw-r--r-- | xine/post.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/xine/post.c b/xine/post.c index 192bf773..b43de8c4 100644 --- a/xine/post.c +++ b/xine/post.c @@ -204,6 +204,8 @@ static void __pplugin_update_parameters(xine_post_t *post, char *args) } break; } + } else { + LOGMSG("Unknown post plugin parameter %s !", param); } } } |