summaryrefslogtreecommitdiff
path: root/test/test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2014-01-23 00:22:20 +0000
committerCarl Hetherington <cth@carlh.net>2014-01-23 00:22:20 +0000
commitb299c1873bf23414061d551843275c77a9256a05 (patch)
tree3e17f87bf23c11db74c2939018cd5553255f940b /test/test.cc
parent015fe447cfe25babc55cf8ed282bb909e4713aa0 (diff)
parent797c7543dc7fe5a9f9ddaf4c2035f9b9a7188758 (diff)
Merge master.
Diffstat (limited to 'test/test.cc')
-rw-r--r--test/test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/test.cc b/test/test.cc
index f9d761da3..e43db71ef 100644
--- a/test/test.cc
+++ b/test/test.cc
@@ -104,7 +104,7 @@ check_file (boost::filesystem::path ref, boost::filesystem::path check)
BOOST_CHECK_EQUAL (N, boost::filesystem::file_size (check));
FILE* ref_file = fopen (ref.c_str(), "rb");
BOOST_CHECK (ref_file);
- FILE* check_file = fopen (check.c_str(), "rb");
+ FILE* check_file = fopen_boost (check, "rb");
BOOST_CHECK (check_file);
int const buffer_size = 65536;