Changeset 21737 for branches/gcc-kmk/src/kernel32/osliblvm.cpp
- Timestamp:
- Oct 24, 2011, 9:23:36 PM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/gcc-kmk/src/kernel32/osliblvm.cpp
r21720 r21737 356 356 return volinfo; 357 357 } 358 for(int i=0;i<volctrl->Count;i++) { 358 int i; 359 for(i=0;i<volctrl->Count;i++) { 359 360 volinfo = Get_Volume_Information(volctrl->Volume_Control_Data[i].Volume_Handle, lasterror); 360 361 if(*lasterror != LVM_ENGINE_NO_ERROR) { … … 394 395 return volinfo; 395 396 } 396 for(int i=0;i<volctrl->Count;i++) { 397 int i; 398 for(i=0;i<volctrl->Count;i++) { 397 399 volinfo = Get_Volume_Information(volctrl->Volume_Control_Data[i].Volume_Handle, lasterror); 398 400 if(*lasterror != LVM_ENGINE_NO_ERROR) { … … 499 501 return FALSE; 500 502 } 501 for(int i=0;i<diskinfo.Count;i++) { 503 int i; 504 for(i=0;i<diskinfo.Count;i++) { 502 505 if(diskinfo.Drive_Control_Data[i].Drive_Handle == partctrl.Partition_Array[0].Drive_Handle) { 503 506 //win32 base = 0, os2 base = 1
Note:
See TracChangeset
for help on using the changeset viewer.