summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--cipher/md.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/cipher/md.c b/cipher/md.c
index d6a80427..ea9ade19 100644
--- a/cipher/md.c
+++ b/cipher/md.c
@@ -261,14 +261,14 @@ typedef struct gcry_md_list
struct gcry_md_context
{
int magic;
- size_t actual_handle_size; /* Allocated size of this handle. */
- FILE *debug;
struct {
unsigned int secure:1;
unsigned int finalized:1;
unsigned int bugemu1:1;
unsigned int hmac:1;
} flags;
+ size_t actual_handle_size; /* Allocated size of this handle. */
+ FILE *debug;
GcryDigestEntry *list;
};