diff options
| author | Rye <rye@alchemyviewer.org> | 2025-08-18 21:26:20 -0400 | 
|---|---|---|
| committer | Rye <rye@alchemyviewer.org> | 2025-08-19 08:58:49 -0400 | 
| commit | 77514ebddd68ca47bc3751f0a6e55a83deec79a9 (patch) | |
| tree | 301d0e526615552bbcba4f309f20e159a8bfe9e5 /indra/llprimitive/lldaeloader.cpp | |
| parent | 52cca995ccc30ac5aa989588a71c0a7f4a9804ae (diff) | |
Fix macOS deprecation warnings
Diffstat (limited to 'indra/llprimitive/lldaeloader.cpp')
| -rw-r--r-- | indra/llprimitive/lldaeloader.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llprimitive/lldaeloader.cpp b/indra/llprimitive/lldaeloader.cpp index 0759447902..4c028e7128 100644 --- a/indra/llprimitive/lldaeloader.cpp +++ b/indra/llprimitive/lldaeloader.cpp @@ -1314,7 +1314,7 @@ void LLDAELoader::processDomModel(LLModel* model, DAE* dae, daeElement* root, do                      {                          //Build a joint for the resolver to work with                          char str[64]={0}; -                        sprintf(str,"./%s",(*jointIt).first.c_str() ); +                        snprintf(str, sizeof(str), "./%s",(*jointIt).first.c_str() );                          //LL_WARNS()<<"Joint "<< str <<LL_ENDL;                          //Setup the resolver  | 
