Module: libav
Branch: master
Commit: 52385410b7de012c2562fb5ba8f07a4e1112c4e7

Author:    Diego Biurrun <[email protected]>
Committer: Diego Biurrun <[email protected]>
Date:      Mon Mar 21 19:22:26 2016 +0100

des-test: Move a variable declaration to avoid an ifdef

---

 libavutil/des.c |    4 +---
 1 file changed, 1 insertion(+), 3 deletions(-)

diff --git a/libavutil/des.c b/libavutil/des.c
index 86d4712..2b77af6 100644
--- a/libavutil/des.c
+++ b/libavutil/des.c
@@ -396,9 +396,6 @@ static int run_test(int cbc, int decrypt) {
 int main(void) {
     AVDES d;
     int i;
-#ifdef GENTABLES
-    int j;
-#endif
     uint64_t key[3];
     uint64_t data;
     uint64_t ct;
@@ -436,6 +433,7 @@ int main(void) {
 #ifdef GENTABLES
     printf("static const uint32_t S_boxes_P_shuffle[8][64] = {\n");
     for (i = 0; i < 8; i++) {
+        int j;
         printf("    {");
         for (j = 0; j < 64; j++) {
             uint32_t v = S_boxes[i][j >> 1];

_______________________________________________
libav-commits mailing list
[email protected]
https://lists.libav.org/mailman/listinfo/libav-commits

Reply via email to