Changeset 62807 in vbox for trunk/src/VBox/HostServices/SharedClipboard
- Timestamp:
- Aug 1, 2016 10:07:09 AM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 109394
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/HostServices/SharedClipboard/VBoxClipboard-win.cpp
r62798 r62807 1173 1173 static int ConvertMimeToCFHTML(const char *pszSource, size_t cb, char **ppszOutput, uint32_t *pcbOutput) 1174 1174 { 1175 Assert(p szOutput);1175 Assert(ppszOutput); 1176 1176 Assert(pcbOutput); 1177 1177 Assert(pszSource); … … 1244 1244 /* check 'EndFragment:' value */ 1245 1245 const char *pszRealEndFragment = RTStrStr(pszResult, s_szEndFragment); 1246 Assert(( pszRealEndFragment - pszResult) == offEndFragment);1246 Assert((size_t)(pszRealEndFragment - pszResult) == offEndFragment); 1247 1247 #endif 1248 1248
Note:
See TracChangeset
for help on using the changeset viewer.