Merge pull request #35 from jakibaki/master

getopt_long returns an int, not a char.
This commit is contained in:
SciresM 2018-07-24 00:36:48 -07:00 committed by GitHub
commit 84715a89f8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

2
main.c
View file

@ -128,7 +128,7 @@ int main(int argc, char **argv) {
while (1) {
int option_index;
char c;
int c;
static struct option long_options[] =
{
{"extract", 0, NULL, 'x'},