summaryrefslogtreecommitdiff
path: root/indra/test/llblowfish_tut.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/test/llblowfish_tut.cpp')
-rw-r--r--indra/test/llblowfish_tut.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/test/llblowfish_tut.cpp b/indra/test/llblowfish_tut.cpp
index b220755941..3859d6c3b1 100644
--- a/indra/test/llblowfish_tut.cpp
+++ b/indra/test/llblowfish_tut.cpp
@@ -60,13 +60,13 @@ namespace tut
bool matchFile(const char* filename,
const std::string& data)
{
- FILE* fp = fopen(filename, "rb");
+ LLFILE* fp = LLFile::fopen(filename, "rb");
if (!fp)
{
// sometimes test is run inside the indra directory
std::string path = "test/";
path += filename;
- fp = fopen(path.c_str(), "rb");
+ fp = LLFile::fopen(path.c_str(), "rb");
}
if (!fp)
{