Changeset 904
- Timestamp:
- Jan 5, 2008, 3:54:40 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/dll/error.c
r787 r904 219 219 pErrInfoBlk = WinGetErrorInfo(hab); 220 220 if (!pErrInfoBlk) { 221 ERRORID id = WinGetLastError(hab); // 03 Jan 08 SHL fixme debug 221 222 psz = pszBuf + strlen(pszBuf); 222 s trcpy(psz, "WinGetErrorInfo failed");223 sprintf(psz, " WinGetErrorInfo failed (%u)", id); 223 224 } 224 225 else { … … 233 234 */ 234 235 psz = pszBuf + strlen(pszBuf); 235 sprintf(psz, " #0x%04x \"", ERRORIDERROR(pErrInfoBlk->idError));236 sprintf(psz, " #0x%04x \"", ERRORIDERROR(pErrInfoBlk->idError)); 236 237 psz += strlen(psz); 237 238 strcpy(psz, ((PSZ) pErrInfoBlk) + *(PSHORT) pszOffset);
Note:
See TracChangeset
for help on using the changeset viewer.