summaryrefslogtreecommitdiff
path: root/indra/newview/llviewermessage.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'indra/newview/llviewermessage.cpp')
-rwxr-xr-xindra/newview/llviewermessage.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/indra/newview/llviewermessage.cpp b/indra/newview/llviewermessage.cpp
index ac652ef329..0ce8585c15 100755
--- a/indra/newview/llviewermessage.cpp
+++ b/indra/newview/llviewermessage.cpp
@@ -5964,14 +5964,14 @@ bool attempt_standard_notification(LLMessageSystem* msgsystem)
if (notificationID == "RegionRestartMinutes" ||
notificationID == "RegionRestartSeconds")
{
- U32 seconds;
+ S32 seconds;
if (notificationID == "RegionRestartMinutes")
{
- seconds = 60 * static_cast<U32>(llsdBlock["MINUTES"].asInteger());
+ seconds = 60 * static_cast<S32>(llsdBlock["MINUTES"].asInteger());
}
else
{
- seconds = static_cast<U32>(llsdBlock["SECONDS"].asInteger());
+ seconds = static_cast<S32>(llsdBlock["SECONDS"].asInteger());
}
LLSD params;