mirror of
https://github.com/reactos/reactos.git
synced 2025-01-05 22:12:46 +00:00
[FSUTIL]
Fix a cppcheck warning svn path=/trunk/; revision=75780
This commit is contained in:
parent
8011060032
commit
8df0380fb1
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue