aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra
diff options
context:
space:
mode:
authorArmin Weatherwax2009-12-13 20:28:14 +0100
committerJacek Antonelli2010-01-03 16:31:28 -0600
commitd440ed36df626673bd47a99abf88f2b23855b2d8 (patch)
tree783b9cf53c9b2f86fba9df86c1bda16d02fbb1fd /linden/indra
parentTrying the new 64bit libs and adding the adjustments needed. (diff)
downloadmeta-impy-d440ed36df626673bd47a99abf88f2b23855b2d8.zip
meta-impy-d440ed36df626673bd47a99abf88f2b23855b2d8.tar.gz
meta-impy-d440ed36df626673bd47a99abf88f2b23855b2d8.tar.bz2
meta-impy-d440ed36df626673bd47a99abf88f2b23855b2d8.tar.xz
Updating a few 64bit Linux libs.
(Cherry picked by Jacek from 95c834e7)
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/llappviewerlinux.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/newview/llappviewerlinux.cpp b/linden/indra/newview/llappviewerlinux.cpp
index 54ba305..4956e9d 100644
--- a/linden/indra/newview/llappviewerlinux.cpp
+++ b/linden/indra/newview/llappviewerlinux.cpp
@@ -188,7 +188,7 @@ static inline BOOL do_basic_glibc_backtrace()
188 for (i = 0; i < size; i++) 188 for (i = 0; i < size; i++)
189 { 189 {
190 // the format of the StraceFile is very specific, to allow (kludgy) machine-parsing 190 // the format of the StraceFile is very specific, to allow (kludgy) machine-parsing
191 fprintf(StraceFile, "%-3d ", i); 191 fprintf(StraceFile, "%-ld ", (long)i);
192 fprintf(StraceFile, "%-32s\t", "unknown"); 192 fprintf(StraceFile, "%-32s\t", "unknown");
193 fprintf(StraceFile, "%p ", stackarray[i]); 193 fprintf(StraceFile, "%p ", stackarray[i]);
194 fprintf(StraceFile, "%s\n", strings[i]); 194 fprintf(StraceFile, "%s\n", strings[i]);