Changeset 98660 in vbox
- Timestamp:
- Feb 20, 2023 4:14:07 PM (22 months ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/bldprogs/VBoxDef2LazyLoad.cpp
r98103 r98660 234 234 if (!g_fIgnoreData) 235 235 { 236 fprintf(stderr, "%s:%u: error: Cannot wrap upDATA export '%.*s'.\n",236 fprintf(stderr, "%s:%u: error: Cannot process DATA export '%.*s'.\n", 237 237 pszInput, iLine, cchName, pchName); 238 238 return RTEXITCODE_SUCCESS; … … 241 241 else if (!WORD_CMP(psz, cch, "PRIVATE")) 242 242 { 243 fprintf(stderr, "%s:%u: error: Cannot wrap upDATA export '%.*s'.\n",243 fprintf(stderr, "%s:%u: error: Cannot process DATA export '%.*s'.\n", 244 244 pszInput, iLine, cchName, pchName); 245 245 return RTEXITCODE_SUCCESS; … … 300 300 if (feof(pInput)) 301 301 return RTEXITCODE_SUCCESS; 302 fprintf(stderr, "error: Read while reading'%s' (iLine=%u).\n", pszInput, iLine);302 fprintf(stderr, "error: Incompletely read '%s' (iLine=%u).\n", pszInput, iLine); 303 303 return RTEXITCODE_FAILURE; 304 304 } … … 401 401 fprintf(pOutput, 402 402 ";\n" 403 "; Import pointers. Initialized to point alazy loading stubs.\n"403 "; Import pointers. Initialized to point to lazy loading stubs.\n" 404 404 ";\n" 405 405 "BEGINDATA\n" … … 1056 1056 fprintf(pOutput, 1057 1057 ";\n" 1058 "; Import pointers. Initialized to point alazy loading stubs.\n"1058 "; Import pointers. Initialized to point to lazy loading stubs.\n" 1059 1059 ";\n" 1060 1060 ".section __DATA,__data\n"
Note:
See TracChangeset
for help on using the changeset viewer.