aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/llrender/llgldbg.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'linden/indra/llrender/llgldbg.cpp')
-rw-r--r--linden/indra/llrender/llgldbg.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/linden/indra/llrender/llgldbg.cpp b/linden/indra/llrender/llgldbg.cpp
index ab35353..84f0082 100644
--- a/linden/indra/llrender/llgldbg.cpp
+++ b/linden/indra/llrender/llgldbg.cpp
@@ -4,6 +4,7 @@
4 * 4 *
5 * Copyright (c) 2001-2007, Linden Research, Inc. 5 * Copyright (c) 2001-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
@@ -100,7 +101,7 @@ char *fv3(F32 *f)
100char *fv1(F32 *f) 101char *fv1(F32 *f)
101{ 102{
102 static char str[128]; /* Flawfinder: ignore */ 103 static char str[128]; /* Flawfinder: ignore */
103 snprintf(str, sizeof(str), "%8.3f", f[0]); /* Flawfinder: ignore */ 104 snprintf(str, sizeof(str), "%8.3f", f[0]); /* Flawfinder: ignore */
104 return str; 105 return str;
105} 106}
106 107