Changeset 1329 for trunk/src/kmk/kmkbuiltin/kDepIDB.c
- Timestamp:
- Dec 2, 2007, 9:49:33 PM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/kmk/kmkbuiltin/kDepIDB.c
r1269 r1329 127 127 size_t cchDep; 128 128 pbCur += cchPrefix; 129 cchDep = strlen( pbCur);130 depAdd( pbCur, cchDep);129 cchDep = strlen((const char *)pbCur); 130 depAdd((const char *)pbCur, cchDep); 131 131 dprintf(("%05x: '%s'\n", pbCur - pbStream, pbCur)); 132 132 … … 756 756 static int ProcessIDB(FILE *pInput) 757 757 { 758 size_t cbFile; 759 char *pbFile; 760 char *pbHdr = PDB_SIGNATURE_200; 761 int rc = 0; 758 size_t cbFile; 759 uint8_t *pbFile; 760 int rc = 0; 762 761 763 762 /* 764 763 * Read the file into memory. 765 764 */ 766 pbFile = ( char*)ReadFileIntoMemory(pInput, &cbFile);765 pbFile = (uint8_t *)ReadFileIntoMemory(pInput, &cbFile); 767 766 if (!pbFile) 768 767 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.