TW-1741: Warning "ignoring return value of ‘int ftruncate" while doing make on xubuntu15.10

- Thanks to Sunil Joshi.
This commit is contained in:
Paul Beckingham 2016-01-11 15:26:15 -05:00
parent 3a3cfef0c3
commit df45c84266
2 changed files with 3 additions and 1 deletions

View file

@ -532,7 +532,7 @@ void File::truncate ()
open ();
if (_fh)
ftruncate (_h, 0);
(void) ftruncate (_h, 0);
}
////////////////////////////////////////////////////////////////////////////////