- Timestamp:
- Nov 25, 2006, 3:16:39 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/gmake/kbuild.c
r575 r595 829 829 830 830 /* the global sdks */ 831 for (iSdk = pSdks->iGlobal; iSdk < pSdks-> cGlobal; iSdk++)831 for (iSdk = pSdks->iGlobal; iSdk < pSdks->iGlobal + pSdks->cGlobal; iSdk++) 832 832 { 833 833 struct variable *pSdk = &pSdks->pa[iSdk]; … … 863 863 864 864 /* the target sdks */ 865 for (iSdk = pSdks->iTarget; iSdk < pSdks-> cTarget; iSdk++)865 for (iSdk = pSdks->iTarget; iSdk < pSdks->iTarget + pSdks->cTarget; iSdk++) 866 866 { 867 867 struct variable *pSdk = &pSdks->pa[iSdk]; … … 897 897 898 898 /* the source sdks */ 899 for (iSdk = pSdks->iSource; iSdk < pSdks-> cSource; iSdk++)899 for (iSdk = pSdks->iSource; iSdk < pSdks->iSource + pSdks->cSource; iSdk++) 900 900 { 901 901 struct variable *pSdk = &pSdks->pa[iSdk]; … … 932 932 933 933 /* the target + source sdks */ 934 for (iSdk = pSdks->iTargetSource; iSdk < pSdks-> cTargetSource; iSdk++)934 for (iSdk = pSdks->iTargetSource; iSdk < pSdks->iTargetSource + pSdks->cTargetSource; iSdk++) 935 935 { 936 936 struct variable *pSdk = &pSdks->pa[iSdk];
Note:
See TracChangeset
for help on using the changeset viewer.