Details
-
Type:
Bug
-
Status: Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: None
-
Fix Version/s: None
-
Component/s: None
-
Labels:
Description
there is number of errors like this during attempt to compile under windows x64 (vista):
..\storage\xtradb\handler\ha_innodb.cc(9947) : error C2440: 'initializing' : cannot convert from 'ulint *' to 'unsigned long *'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
..\storage\xtradb\handler\ha_innodb.cc(9952) : error C2440: 'initializing' : cannot convert from 'ulint *' to 'unsigned long *'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
..\storage\xtradb\handler\ha_innodb.cc(10015) : error C2440: 'initializing' : cannot convert from 'ulint *' to 'unsigned long *'
Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
Gliffy Diagrams
Attachments
Activity
- All
- Comments
- Work Log
- History
- Activity
- Transitions
Re: types conversion problem during compilation under windows x64
I found the problem (fixed in innodb but not in additional xtradb options): options should be declared as ulong instead of ulint.