Changeset 3579 for trunk/kStuff/kLdr/kLdrDyldFind.c
- Timestamp:
- Sep 2, 2007, 11:40:41 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kStuff/kLdr/kLdrDyldFind.c
r3578 r3579 620 620 return 0; 621 621 /** @todo deal with return codes properly. */ 622 if (rc >= K LDR_ERR_BASE && rc <= KLDR_ERR_END)622 if (rc >= KERR_BASE && rc <= KERR_END) 623 623 return rc; 624 624 … … 772 772 * Resolve default search method, prefix and suffix. 773 773 * 774 * @returns 0 on success, K LDR_ERR_INVALID_PARAMETER on failure.774 * @returns 0 on success, KERR_INVALID_PARAMETER on failure. 775 775 * @param penmSearch The search method. In/Out. 776 776 * @param ppszPrefix The prefix. In/Out. … … 828 828 default: 829 829 KLDRDYLDFIND_ASSERT(!"invalid search method"); 830 return K LDR_ERR_INVALID_PARAMETER;830 return KERR_INVALID_PARAMETER; 831 831 } 832 832
Note:
See TracChangeset
for help on using the changeset viewer.