- Timestamp:
- Apr 28, 2020 11:58:24 PM (5 years ago)
- svn:sync-xref-src-repo-rev:
- 137649
- Location:
- trunk/src/VBox/Runtime
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/err/errmsg-sorter.cpp
r84067 r84070 262 262 "typedef struct RTMSGENTRYINT\n" 263 263 "{\n" 264 " uint32_t offDefine : 20;\n"265 " uint32_t cchDefine : 9;\n"264 " uint32_t offDefine : 20;\n" 265 " uint32_t cchDefine : 9;\n" 266 266 "%s" 267 267 "%s" … … 270 270 "typedef RTMSGENTRYINT *PCRTMSGENTRYINT;\n" 271 271 "\n" 272 "static const RTMSGENTRYINT g_aStatusMsgs[ ] =\n"272 "static const RTMSGENTRYINT g_aStatusMsgs[ /*%lu*/ ] =\n" 273 273 "{\n" 274 274 , … … 278 278 enmMode == kMode_All 279 279 ? " uint32_t offMsgFull : 23;\n" 280 " uint32_t cchMsgFull : 9;\n" : ""); 280 " uint32_t cchMsgFull : 9;\n" : "", 281 (unsigned long)cStatusMsgs); 281 282 282 283 if (enmMode == kMode_All) -
trunk/src/VBox/Runtime/win/errmsgwin-sorter.cpp
r84067 r84070 228 228 "typedef struct RTMSGWINENTRYINT\n" 229 229 "{\n" 230 " uint32_t offDefine : 20;\n"231 " uint32_t cchDefine : 9;\n"230 " uint32_t offDefine : 20;\n" 231 " uint32_t cchDefine : 9;\n" 232 232 "%s" 233 233 " int32_t iCode;\n" … … 235 235 "typedef RTMSGWINENTRYINT *PCRTMSGWINENTRYINT;\n" 236 236 "\n" 237 "static const RTMSGWINENTRYINT g_aWinMsgs[ ] =\n"237 "static const RTMSGWINENTRYINT g_aWinMsgs[ /*%lu*/ ] =\n" 238 238 "{\n" 239 239 , 240 240 enmMode == kMode_All 241 ? " uint32_t offMsgFull : 23;\n" 242 " uint32_t cchMsgFull : 9;\n" : ""); 241 ? " uint32_t offMsgFull : 23;\n" 242 " uint32_t cchMsgFull : 9;\n" : "", 243 (unsigned long)cStatusMsgs); 243 244 244 245 if (enmMode == kMode_All)
Note:
See TracChangeset
for help on using the changeset viewer.