mirror of
https://github.com/davatorium/rofi.git
synced 2025-07-31 21:59:25 -04:00
Fix missing equals
This commit is contained in:
parent
1b5bcaa9f4
commit
0fb7258470
1 changed files with 1 additions and 1 deletions
|
@ -334,7 +334,7 @@ static int add_mode ( const char * token )
|
||||||
modi[num_modi] = &ssh_mode;
|
modi[num_modi] = &ssh_mode;
|
||||||
num_modi++;
|
num_modi++;
|
||||||
}
|
}
|
||||||
else if ( strcasecmp ( token, mode_get_name ( &help_keys_mode ) ) ) {
|
else if ( strcasecmp ( token, mode_get_name ( &help_keys_mode ) ) == 0 ) {
|
||||||
modi[num_modi] = &help_keys_mode;
|
modi[num_modi] = &help_keys_mode;
|
||||||
num_modi++;
|
num_modi++;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue