Changeset 77
- Timestamp:
- Jun 22, 2016, 7:03:55 PM (9 years ago)
- Location:
- trunk
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kDbg/kDbgHlpCrt.cpp
r29 r77 158 158 kDbgHlpSeek(pFile, offCur); 159 159 } 160 else 161 cbFile = -1; 160 162 return cbFile; 161 163 } -
trunk/kProfiler2/kPrf2Read.cpp
r29 r77 221 221 { \ 222 222 fprintf(pOut, "cb" #MemBaseName " was expected to be %#x but is %#x. Probably a format change, rebuild.\n", \ 223 ( pHdr->Hdr32.cFormatBits == 32 ? cb32 : cb64), pHdr->Hdr32.cb##MemBaseName); \223 (unsigned)(pHdr->Hdr32.cFormatBits == 32 ? cb32 : cb64), pHdr->Hdr32.cb##MemBaseName); \ 224 224 return false; \ 225 225 }\ -
trunk/kProfiler2/prfreader.cpp.h
r29 r77 64 64 { 65 65 fprintf(pOut, "The module segment record at 0x%x has an invalid path length 0x%x it the actual length is 0x%x\n", 66 pCur->cchPath, strlen(pCur->szPath));66 off, pCur->cchPath, strlen(pCur->szPath)); 67 67 return false; 68 68 } … … 1228 1228 fprintf(pOut, 1229 1229 " <td><a href=\"#Func-%u\">", 1230 pReportFunc - pReport->paFunctions);1230 (unsigned)(uintptr_t)(pReportFunc - pReport->paFunctions)); 1231 1231 if (pReportFunc->pSym) 1232 1232 fprintf(pOut, "%s</a></td>\n", pReportFunc->pSym->szName); … … 1559 1559 "<a name=\"Mod-%u\">\n" 1560 1560 "<tr><td class=\"BlankRow\" colspan=7><a name=\"Module-%u\"> </a></td></tr>\n", 1561 iMod );1561 iMod, iMod); 1562 1562 KPRF_NAME(HtmlWriteRowU32)(pOut, "Module No.", iMod, NULL); 1563 1563 KPRF_NAME(HtmlWriteRowString)(pOut, "Name", "Name", "%s", pMod->pFirstSeg->pModSeg->szPath);
Note:
See TracChangeset
for help on using the changeset viewer.