diff options
author | Oz Linden <oz@lindenlab.com> | 2013-03-04 14:06:18 -0500 |
---|---|---|
committer | Oz Linden <oz@lindenlab.com> | 2013-03-04 14:06:18 -0500 |
commit | e247336a03ba25eaacaec3ec0cf6665daba69dfc (patch) | |
tree | 84816229f1acad79e76dda3ed7877b0b7f0b1b3d /indra | |
parent | 7a3a74b3d4eb6159a2edb86c8e967369cada78b9 (diff) |
fix Linux warning/error
Diffstat (limited to 'indra')
-rw-r--r-- | indra/newview/llviewerstatsrecorder.cpp | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/indra/newview/llviewerstatsrecorder.cpp b/indra/newview/llviewerstatsrecorder.cpp index 91e485d01b..97ca08f694 100644 --- a/indra/newview/llviewerstatsrecorder.cpp +++ b/indra/newview/llviewerstatsrecorder.cpp @@ -216,7 +216,11 @@ void LLViewerStatsRecorder::writeToLog( F32 interval ) << "Texture Fetch bps\t" << "\n"; - fwrite(data_msg.str().c_str(), 1, data_msg.str().size(), mObjectCacheFile ); + size_t data_size = data_msg.str().size(); + if ( data_size != fwrite(data_msg.str().c_str(), 1, data_size, mObjectCacheFile )) + { + llwarns << "Unable to write complete column headings to " << STATS_FILE_NAME << llendl; + } } else { @@ -249,7 +253,12 @@ void LLViewerStatsRecorder::writeToLog( F32 interval ) << "\t" << (mTextureFetchSize * 8 / delta_time) << "\n"; - fwrite(data_msg.str().c_str(), 1, data_msg.str().size(), mObjectCacheFile ); + size_t data_size = data_msg.str().size(); + if ( data_size != fwrite(data_msg.str().c_str(), 1, data_size, mObjectCacheFile )) + { + llwarns << "Unable to write complete stats record to " << STATS_FILE_NAME << llendl; + } + fwrite(data_msg.str().c_str(), 1, data_size, mObjectCacheFile ); clearStats(); } |