diff options
| author | Xiaohong Bao <bao@lindenlab.com> | 2013-10-25 10:29:45 -0600 | 
|---|---|---|
| committer | Xiaohong Bao <bao@lindenlab.com> | 2013-10-25 10:29:45 -0600 | 
| commit | 555cf227ffed470184b55bc5a87b125da66f0a16 (patch) | |
| tree | 871213f0dbf487628eab0425707aeabb96af3d1d /indra/llmessage | |
| parent | bcba6ee3a5e8c34e4686e79dcd45f19a9caa2cfb (diff) | |
trivial: fix several weird compiling errors.
Diffstat (limited to 'indra/llmessage')
| -rwxr-xr-x | indra/llmessage/llassetstorage.cpp | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/indra/llmessage/llassetstorage.cpp b/indra/llmessage/llassetstorage.cpp index 94552750f4..8ba2535531 100755 --- a/indra/llmessage/llassetstorage.cpp +++ b/indra/llmessage/llassetstorage.cpp @@ -405,7 +405,7 @@ bool LLAssetStorage::findInStaticVFSAndInvokeCallback(const LLUUID& uuid, LLAsse  	if (user_data)  	{  		// The *user_data should not be passed without a callback to clean it up. -		llassert(callback != NULL) +		llassert(callback != NULL);  	}  	BOOL exists = mStaticVFS->getExists(uuid, type); @@ -445,7 +445,7 @@ void LLAssetStorage::getAssetData(const LLUUID uuid, LLAssetType::EType type, LL  	if (user_data)  	{  		// The *user_data should not be passed without a callback to clean it up. -		llassert(callback != NULL) +		llassert(callback != NULL);  	}  	if (mShutDown) | 
