]> git.ipfire.org Git - thirdparty/openssl.git/blobdiff - crypto/aes/aes_x86core.c
fix some code with obvious wrong coding style
[thirdparty/openssl.git] / crypto / aes / aes_x86core.c
index da525b6566c4a24792d4c36a43d31d1950106f32..8e54e80a6c9e6379e8f1046c2049bb86b6645b54 100644 (file)
 #if 1
 static void prefetch256(const void *table)
 {
-    volatile unsigned long *t=(void *)table,ret;
+    volatile unsigned long *t = (void *)table, ret;
     unsigned long sum;
     int i;
 
     /* 32 is common least cache-line size */
-    for (sum=0,i=0;i<256/sizeof(t[0]);i+=32/sizeof(t[0]))   sum ^= t[i];
+    for (sum = 0, i = 0; i < 256/sizeof(t[0]); i += 32/sizeof(t[0]))
+        sum ^= t[i];
 
     ret = sum;
 }