mirror of
https://github.com/Raymo111/i3lock-color.git
synced 2025-02-24 16:06:26 -05:00
getopt_long returns int, don't cast to char.
On ARM, casting -1 to char turns it into something else. Fixes argument parsing on ARM. Thanks Chipaca for reporting.
This commit is contained in:
parent
fdf6d7af2a
commit
65795be0a9
1 changed files with 1 additions and 1 deletions
2
i3lock.c
2
i3lock.c
|
@ -550,7 +550,7 @@ int main(int argc, char *argv[]) {
|
|||
struct pam_conv conv = {conv_callback, NULL};
|
||||
int nscreen;
|
||||
int curs_choice = CURS_NONE;
|
||||
char o;
|
||||
int o;
|
||||
int optind = 0;
|
||||
struct option longopts[] = {
|
||||
{"version", no_argument, NULL, 'v'},
|
||||
|
|
Loading…
Add table
Reference in a new issue