Changeset 69046 in vbox for trunk/src/VBox/Runtime/tools
- Timestamp:
- Oct 11, 2017 4:11:23 PM (8 years ago)
- svn:sync-xref-src-repo-rev:
- 118325
- Location:
- trunk/src/VBox/Runtime/tools
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/tools/RTCat.cpp
r66602 r69046 212 212 return rcExit; 213 213 ValueUnion.psz = "-"; 214 /* Fall thru. */214 RT_FALL_THRU(); 215 215 case VINF_GETOPT_NOT_OPTION: 216 216 { … … 248 248 case 'e': 249 249 Opts.fShowNonPrinting = true; 250 /* fall thru */250 RT_FALL_THRU(); 251 251 case 'E': 252 252 Opts.fShowEnds = true; … … 268 268 case 't': 269 269 Opts.fShowNonPrinting = true; 270 /* fall thru */270 RT_FALL_THRU(); 271 271 case 'T': 272 272 Opts.fShowTabs = true; -
trunk/src/VBox/Runtime/tools/RTDbgSymCache.cpp
r62724 r69046 1126 1126 case RTDBGSYMCACHEFILETYPE_DIR_FILTER: 1127 1127 Cfg.pszFilter = RTPathFilename(pszPath); 1128 /* fall thru */1128 RT_FALL_THRU(); 1129 1129 case RTDBGSYMCACHEFILETYPE_DIR: 1130 1130 rc = rtDbgSymCacheAddDir(pszPath, &Cfg); -
trunk/src/VBox/Runtime/tools/RTGzip.cpp
r66602 r69046 504 504 ValueUnion.psz = "-"; 505 505 Opts.fStdOut = true; 506 /* Fall thru. */506 RT_FALL_THRU(); 507 507 case VINF_GETOPT_NOT_OPTION: 508 508 { -
trunk/src/VBox/Runtime/tools/RTLs.cpp
r67560 r69046 466 466 pfnCmp = pOpts->fGroupDirectoriesFirst ? rtCmdLsEntryCmpDirFirstUnsorted : NULL; 467 467 break; 468 default: AssertFailed(); /* fall thru */468 default: AssertFailed(); RT_FALL_THRU(); 469 469 case RTCMDLSSORT_NAME: 470 470 pfnCmp = pOpts->fGroupDirectoriesFirst ? rtCmdLsEntryCmpDirFirstName : rtCmdLsEntryCmpName; … … 482 482 switch (pOpts->enmTime) 483 483 { 484 default: AssertFailed(); /* fall thru */484 default: AssertFailed(); RT_FALL_THRU(); 485 485 case RTCMDLSTIME_MTIME: pfnCmp = pOpts->fGroupDirectoriesFirst ? rtCmdLsEntryCmpDirFirstMTime : rtCmdLsEntryCmpMTime; break; 486 486 case RTCMDLSTIME_BTIME: pfnCmp = pOpts->fGroupDirectoriesFirst ? rtCmdLsEntryCmpDirFirstBTime : rtCmdLsEntryCmpBTime; break; … … 755 755 switch (pOpts->enmTime) 756 756 { 757 default: AssertFailed(); /* fall thru */757 default: AssertFailed(); RT_FALL_THRU(); 758 758 case RTCMDLSTIME_MTIME: offTime = RT_OFFSETOF(RTCMDLSENTRY, Info.ModificationTime); break; 759 759 case RTCMDLSTIME_BTIME: offTime = RT_OFFSETOF(RTCMDLSENTRY, Info.BirthTime); break; … … 1437 1437 } 1438 1438 ValueUnion.psz = "."; 1439 /* Fall thru. */1439 RT_FALL_THRU(); 1440 1440 case VINF_GETOPT_NOT_OPTION: 1441 1441 {
Note:
See TracChangeset
for help on using the changeset viewer.