diff options
| author | wwsmiff <arnav0872@gmail.com> | 2024-03-17 01:49:44 +0530 | 
|---|---|---|
| committer | Birte Friesel <derf@chaosdorf.de> | 2024-06-30 11:30:47 +0200 | 
| commit | 8834b349413e75cd5118af9d6cea720821f7fb51 (patch) | |
| tree | 0702ae43a78c1e64f77bf7d5389f2c92da5aab03 | |
| parent | 1005e3bf7aa866d2abc0343845e72f72c044983d (diff) | |
Fix --no-recursive bug
| -rw-r--r-- | src/options.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/options.c b/src/options.c index 0fc656d..266ee0c 100644 --- a/src/options.c +++ b/src/options.c @@ -425,7 +425,7 @@ static void feh_parse_option_array(int argc, char **argv, int finalrun)  		{"scroll-step"   , 1, 0, OPTION_scroll_step},  		{"xinerama-index", 1, 0, OPTION_xinerama_index},  		{"insecure"      , 0, 0, OPTION_insecure}, -		{"no-recursive"  , 0, 0, OPTION_recursive}, +		{"no-recursive"  , 0, 0, OPTION_no_recursive},  		{"cache-size"    , 1, 0, OPTION_cache_size},  		{"on-last-slide" , 1, 0, OPTION_on_last_slide},  		{"conversion-timeout" , 1, 0, OPTION_conversion_timeout}, | 
