Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Correct timeout value
Browse files Browse the repository at this point in the history
  • Loading branch information
xlz-jbleclere committed Sep 4, 2020
1 parent 80e4c94 commit c2bd54e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/drm_manager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1356,7 +1356,7 @@ class DRM_LOCAL DrmManager::Impl {
checkDRMCtlrRet( getDrmController().readActivationCodesTransmittedStatusRegister(
activationCodesTransmitted ) );
timeSpan = TClock::now() - timeStart;
mseconds = double( timeSpan.count() ) * TClock::period::num / TClock::period::den;
mseconds = 1000.0 * double( timeSpan.count() ) * TClock::period::num / TClock::period::den;
if ( activationCodesTransmitted ) {
Debug( "License #{} transmitted after {} ms", mLicenseCounter, mseconds );
break;
Expand Down

0 comments on commit c2bd54e

Please sign in to comment.