mirror of
https://github.com/SciresM/hactool
synced 2025-02-17 03:38:24 +00:00
getopt_long returns an int, not a char.
This commit is contained in:
parent
94d55a936b
commit
0b30b8ce10
1 changed files with 1 additions and 1 deletions
2
main.c
2
main.c
|
@ -121,7 +121,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…
Add table
Reference in a new issue