diff options
| author | Graham Linden <graham@lindenlab.com> | 2014-11-18 12:54:13 -0800 | 
|---|---|---|
| committer | Graham Linden <graham@lindenlab.com> | 2014-11-18 12:54:13 -0800 | 
| commit | a882d7a02b9e8a58cdbfa945682a313718886ab4 (patch) | |
| tree | 8de380c053fb15b0aa177384f3a611f2e3c84757 /indra/llprimitive | |
| parent | 962a342c65ff541baf0a066a47643c8b9fc172a4 (diff) | |
Fix for gpu_bench crash without parallels knock-on
Diffstat (limited to 'indra/llprimitive')
| -rwxr-xr-x | indra/llprimitive/llmodel.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llprimitive/llmodel.cpp b/indra/llprimitive/llmodel.cpp index b4963225dc..b19df0200d 100755 --- a/indra/llprimitive/llmodel.cpp +++ b/indra/llprimitive/llmodel.cpp @@ -172,7 +172,7 @@ LLModel::EModelStatus load_face_from_dom_triangles(std::vector<LLVolumeFace>& fa  	if (!pos_source)  	{ -		llwarns << "Unable to process mesh without position data; invalid model;  invalid model." << llendl; +		LL_WARNS() << "Unable to process mesh without position data; invalid model;  invalid model." << LL_ENDL;  		return LLModel::BAD_ELEMENT;  	} @@ -193,7 +193,7 @@ LLModel::EModelStatus load_face_from_dom_triangles(std::vector<LLVolumeFace>& fa  	if ((vertex_count == 0) || (tc_count == 0))  	{ -		llwarns << "Unable to process mesh with empty position array; invalid model." << llendl; +		LL_WARNS() << "Unable to process mesh with empty position array; invalid model." << LL_ENDL;  		return LLModel::BAD_ELEMENT;  	} | 
