mirror of
https://github.com/ApfelTeeSaft/reactos.git
synced 2026-09-03 04:13:31 +00:00
[FSUTIL]
Fix a cppcheck warning svn path=/trunk/; revision=75780
This commit is contained in:
@@ -52,7 +52,7 @@ QueryMain(int argc, const TCHAR *argv[])
|
||||
CloseHandle(Volume);
|
||||
|
||||
/* Print the status */
|
||||
_ftprintf(stdout, _T("The %s volume is %s\n"), argv[1], (VolumeStatus & VOLUME_IS_DIRTY ? _T("dirty") : _T("clean")));
|
||||
_ftprintf(stdout, _T("The %s volume is %s\n"), argv[1], ((VolumeStatus & VOLUME_IS_DIRTY) ? _T("dirty") : _T("clean")));
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user