diff options
Diffstat (limited to 'indra/llcommon/llcond.h')
-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: |