diff options
Diffstat (limited to 'src/ca/cpsubssched.cpp')
-rw-r--r-- | src/ca/cpsubssched.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ca/cpsubssched.cpp b/src/ca/cpsubssched.cpp index 73fd4f6d..df15fd03 100644 --- a/src/ca/cpsubssched.cpp +++ b/src/ca/cpsubssched.cpp | |||
@@ -53,7 +53,7 @@ static HRESULT ComponentFindByKey( | |||
53 | CPI_ASSEMBLY_LIST* pAsmList, | 53 | CPI_ASSEMBLY_LIST* pAsmList, |
54 | LPCWSTR pwzKey, | 54 | LPCWSTR pwzKey, |
55 | CPI_ASSEMBLY** ppAsmItm, | 55 | CPI_ASSEMBLY** ppAsmItm, |
56 | CPI_COMPONENT** ppCompItm | 56 | CPISCHED_COMPONENT** ppCompItm |
57 | ); | 57 | ); |
58 | 58 | ||
59 | 59 | ||
@@ -586,12 +586,12 @@ static HRESULT ComponentFindByKey( | |||
586 | CPI_ASSEMBLY_LIST* pAsmList, | 586 | CPI_ASSEMBLY_LIST* pAsmList, |
587 | LPCWSTR pwzKey, | 587 | LPCWSTR pwzKey, |
588 | CPI_ASSEMBLY** ppAsmItm, | 588 | CPI_ASSEMBLY** ppAsmItm, |
589 | CPI_COMPONENT** ppCompItm | 589 | CPISCHED_COMPONENT** ppCompItm |
590 | ) | 590 | ) |
591 | { | 591 | { |
592 | for (CPI_ASSEMBLY* pAsmItm = pAsmList->pFirst; pAsmItm; pAsmItm = pAsmItm->pNext) | 592 | for (CPI_ASSEMBLY* pAsmItm = pAsmList->pFirst; pAsmItm; pAsmItm = pAsmItm->pNext) |
593 | { | 593 | { |
594 | for (CPI_COMPONENT* pCompItm = pAsmItm->pComponents; pCompItm; pCompItm = pCompItm->pNext) | 594 | for (CPISCHED_COMPONENT* pCompItm = pAsmItm->pComponents; pCompItm; pCompItm = pCompItm->pNext) |
595 | { | 595 | { |
596 | if (0 == lstrcmpW(pCompItm->wzKey, pwzKey)) | 596 | if (0 == lstrcmpW(pCompItm->wzKey, pwzKey)) |
597 | { | 597 | { |