diff options
author | ngie <ngie@FreeBSD.org> | 2017-01-17 01:56:44 +0000 |
---|---|---|
committer | ngie <ngie@FreeBSD.org> | 2017-01-17 01:56:44 +0000 |
commit | 9653cf142768e53f7770ac3d31c51a367650034c (patch) | |
tree | 12bef262b1320b5880ca96907556fd09643bee39 /tests/sys | |
parent | 79cfee91770feebfcdaa3f60978cc0a76a7e88d4 (diff) | |
download | FreeBSD-src-9653cf142768e53f7770ac3d31c51a367650034c.zip FreeBSD-src-9653cf142768e53f7770ac3d31c51a367650034c.tar.gz |
MFC r312111:
Remove unused vars to fix -Wunused issues
Diffstat (limited to 'tests/sys')
-rw-r--r-- | tests/sys/file/ftruncate_test.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/sys/file/ftruncate_test.c b/tests/sys/file/ftruncate_test.c index 7eaba14..b657aca 100644 --- a/tests/sys/file/ftruncate_test.c +++ b/tests/sys/file/ftruncate_test.c @@ -57,7 +57,7 @@ static off_t lengths[] = {0, 1, 2, 3, 4, 127, 128, 129, 511, 512, 513, 1023, static int lengths_count = sizeof(lengths) / sizeof(off_t); int -main(int argc, char *argv[]) +main(void) { int error, fd, fds[2], i, read_only_fd; char path[PATH_MAX]; |