summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorBen Summers <ben@fluffy.co.uk>2006-02-01 19:50:54 +0000
committerBen Summers <ben@fluffy.co.uk>2006-02-01 19:50:54 +0000
commit45d64d4d38b698f0945fd04f1fce484e008dba99 (patch)
treeda0fc6d9ba24d00f2ee787c6420a565e9db031e6 /test
parentcea3d8219a4b025e63238e08421cc1b6da74e796 (diff)
Get rid of the non-test compiler warnings seen on Darwin with gcc4
Diffstat (limited to 'test')
-rw-r--r--test/backupdiff/testbackupdiff.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/backupdiff/testbackupdiff.cpp b/test/backupdiff/testbackupdiff.cpp
index 584dd70c..d532d8a6 100644
--- a/test/backupdiff/testbackupdiff.cpp
+++ b/test/backupdiff/testbackupdiff.cpp
@@ -83,7 +83,7 @@ void make_file_of_zeros(const char *filename, size_t size)
fclose(f);
free(b);
- TEST_THAT(TestGetFileSize(filename) == size);
+ TEST_THAT((size_t)TestGetFileSize(filename) == size);
}