diff options
Diffstat (limited to 'indra/test/llpermissions_tut.cpp')
-rw-r--r-- | indra/test/llpermissions_tut.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/test/llpermissions_tut.cpp b/indra/test/llpermissions_tut.cpp index 8d5223e2bc..69f832049c 100644 --- a/indra/test/llpermissions_tut.cpp +++ b/indra/test/llpermissions_tut.cpp @@ -421,7 +421,7 @@ namespace tut template<> template<> void permission_object_t::test<20>() { - FILE* fp = fopen("linden_file.dat","w+"); + LLFILE* fp = LLFile::fopen("linden_file.dat","w+"); if(!fp) { llerrs << "file coudnt be opened\n" << llendl; @@ -444,7 +444,7 @@ namespace tut perm.exportFile(fp); fclose(fp); - fp = fopen("linden_file.dat","r+"); + fp = LLFile::fopen("linden_file.dat","r+"); if(!fp) { llerrs << "file coudnt be opened\n" << llendl; |