Skip to content

Commit

Permalink
VMS: Fix misspelt type
Browse files Browse the repository at this point in the history
'__int64', not 'int64_t'

Ref: commit 2e5cdbc

Reviewed-by: Tomas Mraz <tomas@openssl.org>
Reviewed-by: Paul Dale <pauli@openssl.org>
(Merged from #16557)
  • Loading branch information
levitte committed Sep 9, 2021
1 parent 61ac534 commit 2753b6f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crypto/rand/rand_vms.c
Original file line number Diff line number Diff line change
Expand Up @@ -484,7 +484,7 @@ int rand_pool_add_nonce_data(RAND_POOL *pool)
struct {
pid_t pid;
CRYPTO_THREAD_ID tid;
unsigned __int64_t time;
unsigned __int64 time;
} data = { 0 };

/*
Expand Down Expand Up @@ -582,7 +582,7 @@ int rand_pool_add_additional_data(RAND_POOL *pool)
{
struct {
CRYPTO_THREAD_ID tid;
unsigned __int64_t time;
unsigned __int64 time;
} data = { 0 };

/*
Expand Down

0 comments on commit 2753b6f

Please sign in to comment.