diff options
author | Matteo Baccan <matteo.baccan@gmail.com> | 2022-08-21 17:56:31 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-21 17:56:31 +0200 |
commit | 53b4019d1f2c69cd1b4ee528c31a78a3a5a0e817 (patch) | |
tree | 4a079ed4259668a5e1194c27ee7a2f4dea1911ec /src/Crypto | |
parent | cc5212fdb1a9165b1b4f63ad21198172a068ee43 (diff) | |
download | VeraCrypt-53b4019d1f2c69cd1b4ee528c31a78a3a5a0e817.tar.gz VeraCrypt-53b4019d1f2c69cd1b4ee528c31a78a3a5a0e817.zip |
Fixed a typo error (#929)
Hi
I have fixed a little typo error: a double semicolon at the end of one line
ciao
matteo
Diffstat (limited to 'src/Crypto')
-rw-r--r-- | src/Crypto/jitterentropy-base-user.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Crypto/jitterentropy-base-user.h b/src/Crypto/jitterentropy-base-user.h index 3a33dcd6..b32d8ed3 100644 --- a/src/Crypto/jitterentropy-base-user.h +++ b/src/Crypto/jitterentropy-base-user.h @@ -79,7 +79,7 @@ static VC_INLINE void jent_get_nstime(uint64 *out) #endif * out = v.QuadPart; #else - *out = __rdtsc();; + *out = __rdtsc(); #endif } |