cosmetic (order context variables like in sha1)
authorMichael Niedermayer <michaelni@gmx.at>
Tue, 13 Mar 2007 12:40:13 +0000 (12:40 +0000)
committerMichael Niedermayer <michaelni@gmx.at>
Tue, 13 Mar 2007 12:40:13 +0000 (12:40 +0000)
Originally committed as revision 8386 to svn://svn.ffmpeg.org/ffmpeg/trunk

libavutil/md5.c

index ed19693..7c078bb 100644 (file)
@@ -35,9 +35,9 @@
 #include "md5.h"
 
 typedef struct AVMD5{
+    uint64_t len;
     uint8_t  block[64];
     uint32_t ABCD[4];
-    uint64_t len;
 } AVMD5;
 
 const int av_md5_size= sizeof(AVMD5);