Scheduler/Console: Fix bit-number-lookup-magic to work under 64bit
g0dil [Wed, 26 Nov 2008 12:57:19 +0000 (12:57 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@982 270642c3-0616-0410-b53a-bc976706d245

Scheduler/Console/Parse.cc

index 48cd0a5..dc1dbce 100644 (file)
@@ -136,7 +136,7 @@ prefix_ std::ostream & senf::console::operator<<(std::ostream & os, Token const
         0, 0, 0, 0, 0, 0, 0, 8, 0, 0, 0, 7, 0, 6, 0, 10 };
     // We need to check token.type() against 0 explicitly since 0 and 1 will both be mapped to 0
     os << tokenTypeName[ token.type() 
-                         ? bitPosition[((token.type() & -token.type()) * 0x077CB531UL) >> 27]
+                         ? bitPosition[(((token.type() & -token.type()) * 0x077CB531UL) >> 27) & 31]
                          : 0 ]
        << "('"
        << token.value()