summaryrefslogtreecommitdiff
path: root/indra/llcommon
diff options
context:
space:
mode:
authorNat Goodspeed <nat@lindenlab.com>2019-07-17 18:56:19 +0200
committerNat Goodspeed <nat@lindenlab.com>2020-03-25 18:44:04 -0400
commit72863b942829528a8a3af69d6e1e04a7ac139271 (patch)
treed7a339d18b2c50206ecc8ae4daa11697d0cfd325 /indra/llcommon
parent7e2cc57d61d09ca106243d51494aef025c8729fa (diff)
DRTVWR-476: Fix convert(F32Milliseconds)
Diffstat (limited to 'indra/llcommon')
-rw-r--r--indra/llcommon/llcond.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llcommon/llcond.h b/indra/llcommon/llcond.h
index d18058cf62..8e7120582c 100644
--- a/indra/llcommon/llcond.h
+++ b/indra/llcommon/llcond.h
@@ -169,11 +169,11 @@ public:
protected:
// convert F32Milliseconds to a chrono::duration
- std::chrono::milliseconds convert(F32Milliseconds)
+ std::chrono::milliseconds convert(F32Milliseconds duration)
{
// extract the F32 milliseconds from F32Milliseconds, construct
// std::chrono::milliseconds from that value
- return { timeout_duration.value() };
+ return { duration.value() };
}
private: