Fix a cppcheck warning

svn path=/trunk/; revision=75780
This commit is contained in:
Pierre Schweitzer 2017-09-07 12:49:13 +00:00
parent 8011060032
commit 8df0380fb1

View file

@ -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;
}