]> git.sesse.net Git - ffmpeg/blobdiff - libavutil/random_seed.c
des-test: Pass the proper types to av_des_*() functions
[ffmpeg] / libavutil / random_seed.c
index 26884cbcd665f09e4beb844c0f76fdd61e830116..5bbdf38ec2d7d7fa5e7998057b18cee9b7f1d6a5 100644 (file)
@@ -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];