diff options
author | František Dvořák <valtri@users.sourceforge.net> | 2004-06-16 15:41:37 +0000 |
---|---|---|
committer | František Dvořák <valtri@users.sourceforge.net> | 2004-06-16 15:41:37 +0000 |
commit | e40296ac609e70ad6ee920cfdf3804a942b1d626 (patch) | |
tree | a15a738a342230c1de62355a702c502018ea72c7 | |
parent | 856cfc690228a7b745e61909df2a284d23cb6a73 (diff) | |
download | xine-lib-e40296ac609e70ad6ee920cfdf3804a942b1d626.tar.gz xine-lib-e40296ac609e70ad6ee920cfdf3804a942b1d626.tar.bz2 |
Fix description in decoder priority config entry - there must be different pointers of the strings.
CVS patchset: 6693
CVS date: 2004/06/16 15:41:37
-rw-r--r-- | src/xine-engine/load_plugins.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/xine-engine/load_plugins.c b/src/xine-engine/load_plugins.c index 2c3fca35c..deb9b83ab 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.180 2004/06/13 15:40:30 miguelfreitas Exp $ + * $Id: load_plugins.c,v 1.181 2004/06/16 15:41:37 valtri Exp $ * * * Load input/demux/audio_out/video_out/codec plugins @@ -305,7 +305,6 @@ static void _insert_plugin (xine_t *this, uint32_t *types; int priority = 0; char key[80]; - char desc[100]; int i; if (info->API != api_version) { @@ -362,11 +361,10 @@ static void _insert_plugin (xine_t *this, priority = decoder_new->priority = decoder_old->priority; sprintf(key, "decoder.%s_priority", info->id); - sprintf(desc, _("priority for decoder %s"), info->id); this->config->register_num (this->config, key, 0, - desc, + _("priority for decoder"), _("The priority provides a ranking in case some media " "can be handled by more than one decoder.\n" "A priority of 0 enables the decoder's default priority."), 20, |