From 00c554cbccfa91a1a1bcc7f3a04395e4014f43da Mon Sep 17 00:00:00 2001 From: Michael Roitzsch Date: Thu, 10 Jun 2004 18:54:31 +0000 Subject: 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 --- src/xine-engine/xine_plugin.h | 4 ++-- 1 file 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 */ -- cgit v1.2.3