diff options
| author | Richard Linden <none@none> | 2013-01-10 19:24:47 -0800 | 
|---|---|---|
| committer | Richard Linden <none@none> | 2013-01-10 19:24:47 -0800 | 
| commit | d81388f65b0fec29bd83cfee84e0291f1db15bf6 (patch) | |
| tree | fcd0e6918a56e00d94bc6d190119a9d1c55d594b | |
| parent | 7b0762984a4c49595445ed3a5a113c3f0aa17181 (diff) | |
SH-3406 WIP convert fast timers to lltrace system
fix for gcc build error
| -rw-r--r-- | indra/newview/lltexturefetch.cpp | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/indra/newview/lltexturefetch.cpp b/indra/newview/lltexturefetch.cpp index 9f1c7855be..d62101d159 100644 --- a/indra/newview/lltexturefetch.cpp +++ b/indra/newview/lltexturefetch.cpp @@ -3742,11 +3742,12 @@ TFReqSendMetrics::doWork(LLTextureFetch * fetcher)  	main_stats.getStats(stats, true);  	//LLSD merged_llsd = main_stats.asLLSD(); +	bool initial_report = !reporting_started;  	stats.session_id = mSessionID;  	stats.agent_id = mAgentID;  	stats.message = "ViewerAssetMetrics";  	stats.sequence = static_cast<bool>(report_sequence); -	stats.initial = static_cast<bool>(!reporting_started); +	stats.initial = initial_report;  	stats.break_ = static_cast<bool>(LLTextureFetch::svMetricsDataBreak);  	LLSD sd; | 
