Changeset 84070 in vbox for trunk/src/VBox/Runtime/common/err
- Timestamp:
- Apr 28, 2020 11:58:24 PM (5 years ago)
- File:
-
- 1 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)
Note:
See TracChangeset
for help on using the changeset viewer.