diff options
author | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-07-21 03:31:42 +0000 |
---|---|---|
committer | Diego 'Flameeyes' Pettenò <flameeyes@gmail.com> | 2006-07-21 03:31:42 +0000 |
commit | f00dbe4938456b04c9589eacfd32da80f85a8226 (patch) | |
tree | 0f2bbb995f6c0258ef2a8fc633f68c1c79e760f3 | |
parent | bd1cbff3b8122e8ae4c071ce39712fcd99f53b06 (diff) | |
download | xine-lib-f00dbe4938456b04c9589eacfd32da80f85a8226.tar.gz xine-lib-f00dbe4938456b04c9589eacfd32da80f85a8226.tar.bz2 |
Fix building with LOG enabled.
CVS patchset: 8137
CVS date: 2006/07/21 03:31:42
-rw-r--r-- | src/xine-engine/load_plugins.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 44e7a393c..dbd6007fd 100644 --- a/src/xine-engine/load_plugins.c +++ b/src/xine-engine/load_plugins.c @@ -17,7 +17,7 @@ * along with this program; if not, write to the Free Software * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA * - * $Id: load_plugins.c,v 1.222 2006/06/20 00:35:08 dgp85 Exp $ + * $Id: load_plugins.c,v 1.223 2006/07/21 03:31:42 dgp85 Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -402,7 +402,7 @@ static void _insert_node (xine_t *this, if (demux_old) { entry->priority = demux_new->priority = demux_old->priority; - lprintf("demux: %s, priority: %d\n", info->id, priority); + lprintf("demux: %s, priority: %d\n", info->id, entry->priority); } else { xprintf(this, XINE_VERBOSITY_LOG, _("load_plugins: demuxer plugin %s does not provide a priority," @@ -419,7 +419,7 @@ static void _insert_node (xine_t *this, if (input_old) { entry->priority = input_new->priority = input_old->priority; - lprintf("input: %s, priority: %d\n", info->id, priority); + lprintf("input: %s, priority: %d\n", info->id, entry->priority); } else { xprintf(this, XINE_VERBOSITY_LOG, _("load_plugins: input plugin %s does not provide a priority," |