VeraCrypt
aboutsummaryrefslogtreecommitdiff
path: root/src/Common/Inflate.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/Common/Inflate.h')
-rw-r--r--src/Common/Inflate.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/Common/Inflate.h b/src/Common/Inflate.h
index c2810c82..8420f3dc 100644
--- a/src/Common/Inflate.h
+++ b/src/Common/Inflate.h
@@ -10,17 +10,17 @@ typedef unsigned char uch;
typedef unsigned short ush;
typedef void zvoid;
-typedef struct huft
+typedef struct huft
{
uch b, e;
- union
+ union
{
ush n;
struct huft *t;
}v;
};
-typedef struct
+typedef struct
{
uch *inptr, *outbufptr;
int incnt;