Changeset 85254 in vbox for trunk/include
- Timestamp:
- Jul 11, 2020 11:31:00 PM (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/bldprog-strtab.h
r84054 r85254 98 98 while (cchString-- > 0) 99 99 { 100 unsigned char uch = * pchSrc++;100 unsigned char uch = *(unsigned char *)pchSrc++; 101 101 if (!(uch & 0x80)) 102 102 { … … 192 192 while (cchString-- > 0) 193 193 { 194 unsigned char uch = * pchSrc++;194 unsigned char uch = *(unsigned char *)pchSrc++; 195 195 if (!(uch & 0x80)) 196 196 { … … 221 221 int rc = RTStrGetCpNEx(&pchSrc, &cchString, &uc); 222 222 if (RT_SUCCESS(rc)) 223 cchRet += pfnOutput(pvArgOutput, pchUtf8Seq, pchSrc - pchUtf8Seq);223 cchRet += pfnOutput(pvArgOutput, pchUtf8Seq, (size_t)(pchSrc - pchUtf8Seq)); 224 224 else 225 225 cchRet += pfnOutput(pvArgOutput, "?", 1);
Note:
See TracChangeset
for help on using the changeset viewer.