aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/linden/indra/newview/lllogchat.cpp
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--linden/indra/newview/lllogchat.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/linden/indra/newview/lllogchat.cpp b/linden/indra/newview/lllogchat.cpp
index 62504d6..fb8a450 100644
--- a/linden/indra/newview/lllogchat.cpp
+++ b/linden/indra/newview/lllogchat.cpp
@@ -73,9 +73,9 @@ std::string LLLogChat::timestamp(bool withdate)
73 73
74 std::string text; 74 std::string text;
75 if (withdate) 75 if (withdate)
76 text = llformat("[%d/%02d/%02d %d:%02d] ", (timep->tm_year-100)+2000, timep->tm_mon+1, timep->tm_mday, timep->tm_hour, timep->tm_min); 76 text = llformat("[%d/%02d/%02d %02d:%02d] ", (timep->tm_year-100)+2000, timep->tm_mon+1, timep->tm_mday, timep->tm_hour, timep->tm_min);
77 else 77 else
78 text = llformat("[%d:%02d] ", timep->tm_hour, timep->tm_min); 78 text = llformat("[%02d:%02d] ", timep->tm_hour, timep->tm_min);
79 79
80 return text; 80 return text;
81} 81}