1
0

Disable warnings

This commit is contained in:
Scott E. Graves
2017-02-15 08:14:00 -06:00
parent 42cdbe2cd0
commit 2932c434e9
5 changed files with 11 additions and 6 deletions

View File

@@ -23,7 +23,7 @@ with this program. If not, see <http://www.gnu.org/licenses/>.
#define DOKAN_H_
/** Do not include NTSTATUS. Fix duplicate preprocessor definitions */
#define WIN32_NO_STATUS
#define WIN32_NO_STATUS
#include <windows.h>
#undef WIN32_NO_STATUS
#include <ntstatus.h>

View File

@@ -3310,7 +3310,7 @@ public:
if( negative )
result = '-';
digits_d = table_id; // for not making an overflow in uint type
digits_d = static_cast<double>(table_id); // for not making an overflow in uint type
digits_d *= TTMATH_BITS_PER_UINT;
digits_d += index + 1;
digits_d *= ToStringLog2(b);