- Timestamp:
- Mar 5, 2009 4:48:30 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/ApplianceImpl.cpp
r17417 r17418 2570 2570 const VirtualSystemDescriptionEntry &desc = *itD; 2571 2571 2572 OVFResourceType_T type = 0; // if this becomes != 0 then we do stuff2572 OVFResourceType_T type = (OVFResourceType_T)0; // if this becomes != 0 then we do stuff 2573 2573 Utf8Str strDescription; // must also be set then 2574 2574 int32_t lVirtualQuantity = -1; … … 2604 2604 type = OVFResourceType_Memory; // 4 2605 2605 desc.strVbox.toInt(uTemp); 2606 lVirtualQuantity = uTemp / _1M;2606 lVirtualQuantity = (int32_t)(uTemp / _1M); 2607 2607 break; 2608 2608
Note:
See TracChangeset
for help on using the changeset viewer.