diff options
Diffstat (limited to '')
-rw-r--r-- | linden/indra/lscript/lscript_library/lscript_library.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/lscript/lscript_library/lscript_library.cpp b/linden/indra/lscript/lscript_library/lscript_library.cpp index 7263ec3..ec1cc03 100644 --- a/linden/indra/lscript/lscript_library/lscript_library.cpp +++ b/linden/indra/lscript/lscript_library/lscript_library.cpp | |||
@@ -4,6 +4,7 @@ | |||
4 | * | 4 | * |
5 | * Copyright (c) 2002-2007, Linden Research, Inc. | 5 | * Copyright (c) 2002-2007, Linden Research, Inc. |
6 | * | 6 | * |
7 | * Second Life Viewer Source Code | ||
7 | * The source code in this file ("Source Code") is provided by Linden Lab | 8 | * The source code in this file ("Source Code") is provided by Linden Lab |
8 | * to you under the terms of the GNU General Public License, version 2.0 | 9 | * to you under the terms of the GNU General Public License, version 2.0 |
9 | * ("GPL"), unless you have obtained a separate licensing agreement | 10 | * ("GPL"), unless you have obtained a separate licensing agreement |
@@ -515,7 +516,7 @@ void LLScriptLibData::print(std::ostream &s, BOOL b_prepend_comma) | |||
515 | s << mInteger; | 516 | s << mInteger; |
516 | break; | 517 | break; |
517 | case LST_FLOATINGPOINT: | 518 | case LST_FLOATINGPOINT: |
518 | snprintf(tmp, 1024, "%f", mFP); /*Flawfinder: ignore*/ | 519 | snprintf(tmp, 1024, "%f", mFP); /* Flawfinder: ignore */ |
519 | s << tmp; | 520 | s << tmp; |
520 | break; | 521 | break; |
521 | case LST_KEY: | 522 | case LST_KEY: |