mirror of
https://github.com/SciresM/hactool
synced 2024-11-10 06:34:14 +00:00
Merge pull request #35 from jakibaki/master
getopt_long returns an int, not a char.
This commit is contained in:
commit
84715a89f8
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -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'},
|
||||
|
|
Loading…
Reference in a new issue