diff options
author | Nat Goodspeed <nat@lindenlab.com> | 2019-07-17 18:56:19 +0200 |
---|---|---|
committer | Nat Goodspeed <nat@lindenlab.com> | 2020-03-25 18:44:04 -0400 |
commit | 72863b942829528a8a3af69d6e1e04a7ac139271 (patch) | |
tree | d7a339d18b2c50206ecc8ae4daa11697d0cfd325 /indra | |
parent | 7e2cc57d61d09ca106243d51494aef025c8729fa (diff) |
DRTVWR-476: Fix convert(F32Milliseconds)
Diffstat (limited to 'indra')
-rw-r--r-- | indra/llcommon/llcond.h | 4 |
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: |