diff options
author | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-10 18:54:31 +0000 |
---|---|---|
committer | Michael Roitzsch <mroi@users.sourceforge.net> | 2004-06-10 18:54:31 +0000 |
commit | 00c554cbccfa91a1a1bcc7f3a04395e4014f43da (patch) | |
tree | 28a9db181755dba618cc48b706c41655f70360f3 | |
parent | cc333dcfb5a81a9bf4c9ec9cca1edbd1ea1c1a54 (diff) | |
download | xine-lib-00c554cbccfa91a1a1bcc7f3a04395e4014f43da.tar.gz xine-lib-00c554cbccfa91a1a1bcc7f3a04395e4014f43da.tar.bz2 |
Argl, I forgot to shorten the mask because of the new PLUGIN_NO_UNLOAD flag,
thanks again to Daniel Mack for pointing this out
CVS patchset: 6667
CVS date: 2004/06/10 18:54:31
-rw-r--r-- | src/xine-engine/xine_plugin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/xine-engine/xine_plugin.h b/src/xine-engine/xine_plugin.h index b24451382..914228b0b 100644 --- a/src/xine-engine/xine_plugin.h +++ b/src/xine-engine/xine_plugin.h @@ -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: xine_plugin.h,v 1.15 2004/06/09 17:31:08 mroi Exp $ + * $Id: xine_plugin.h,v 1.16 2004/06/10 18:54:31 mroi Exp $ * * generic plugin definitions * @@ -46,7 +46,7 @@ */ #define PLUGIN_NO_UNLOAD (1 << 6) -#define PLUGIN_TYPE_MASK ((1 << 7) - 1) +#define PLUGIN_TYPE_MASK ((1 << 6) - 1) typedef struct { uint8_t type; /* one of the PLUGIN_* constants above */ |