summaryrefslogtreecommitdiff
path: root/libavutil/random_seed.c
diff options
context:
space:
mode:
Diffstat (limited to 'libavutil/random_seed.c')
-rw-r--r--libavutil/random_seed.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libavutil/random_seed.c b/libavutil/random_seed.c
index 26884cbcd6..5bbdf38ec2 100644
--- a/libavutil/random_seed.c
+++ b/libavutil/random_seed.c
@@ -79,7 +79,7 @@ static uint32_t get_generic_seed(void)
if (!sha) {
uint32_t seed = 0;
int j;
- // Unable to allocate an sha context, just xor the buffer together
+ // Unable to allocate an SHA context, just XOR the buffer together
// to create something hopefully unique.
for (j = 0; j < 512; j++)
seed ^= buffer[j];