Revert random changes from commit#22606.
[openssl.git] / crypto / modes / gcm128.c
index f52d22fa151d93169fdcdcc8a301bac81155b943..025c7f889750914ff97385368a00fba5740c4c5d 100644 (file)
@@ -1752,7 +1752,7 @@ int main()
 
        GHASH((&ctx),buf.c,sizeof(buf));
        start = OPENSSL_rdtsc();
-       for (i=0;i<100;++i) GHASH(&ctx,buf.c,sizeof(buf));
+       for (i=0;i<100;++i) GHASH((&ctx),buf.c,sizeof(buf));
        gcm_t = OPENSSL_rdtsc() - start;
        printf("%.2f\n",gcm_t/(double)sizeof(buf)/(double)i);
        }