From 411a40b5c077ca69e34c7016428eb9d856f8fe73 Mon Sep 17 00:00:00 2001 From: jakob Date: Sun, 9 Apr 2017 19:39:46 -0400 Subject: Automated style checking and fixed unit tests. --- src/cli.h | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'src/cli.h') diff --git a/src/cli.h b/src/cli.h index cf7a535..8189a9d 100644 --- a/src/cli.h +++ b/src/cli.h @@ -33,12 +33,12 @@ enum { /* Structure for storing options set from the command-line. */ struct params { - int mode; /* Current mode of operation. */ - int game; /* Which encryption keys to use. */ - bool verbose; /* Whether or not to output progress messages. */ - int vararg_index; /* Start index of paths in argv. */ - char *out; /* Path to extract files to. */ - size_t out_len; /* Length of the output path string. */ + bool verbose; /* Whether or not to output progress messages. */ + char *out; /* Path to extract files to. */ + size_t out_len; /* Length of the output path string. */ + int mode; /* Current mode of operation. */ + int game; /* Which encryption keys to use. */ + int vararg_index; /* Start index of paths in argv. */ }; /* Returns a params structure parsed from `argv`. */ -- cgit v1.3