summaryrefslogtreecommitdiff
path: root/indra/newview/llmemoryview.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llmemoryview.cpp')
-rw-r--r--indra/newview/llmemoryview.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/newview/llmemoryview.cpp b/indra/newview/llmemoryview.cpp
index e124af1427..ccaed78727 100644
--- a/indra/newview/llmemoryview.cpp
+++ b/indra/newview/llmemoryview.cpp
@@ -58,7 +58,7 @@ mDelay(120)
#ifdef MEM_DUMP_DATA
// clear out file.
- FILE *dump = fopen("memusagedump.txt", "w");
+ LLFILE *dump = LLFile::fopen("memusagedump.txt", "w");
fclose(dump);
#endif
}
@@ -262,7 +262,7 @@ void LLMemoryView::dumpData()
// reset timer
mDumpTimer.reset();
// append dump info to text file
- FILE *dump = fopen("memusagedump.txt", "a");
+ LLFILE *dump = LLFile::fopen("memusagedump.txt", "a");
if (dump)
{