diff options
Diffstat (limited to 'lib/extra_opts.c')
-rw-r--r-- | lib/extra_opts.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/extra_opts.c b/lib/extra_opts.c index 8c17fa4..b555417 100644 --- a/lib/extra_opts.c +++ b/lib/extra_opts.c | |||
@@ -35,11 +35,11 @@ int | |||
35 | is_option2 (char *str) | 35 | is_option2 (char *str) |
36 | { | 36 | { |
37 | if (!str) | 37 | if (!str) |
38 | return 0; | 38 | return FALSE; |
39 | else if (strspn (str, "-") == 1 || strspn (str, "-") == 2) | 39 | else if (strspn (str, "-") == 1 || strspn (str, "-") == 2) |
40 | return 1; | 40 | return TRUE; |
41 | else | 41 | else |
42 | return 0; | 42 | return FALSE; |
43 | } | 43 | } |
44 | 44 | ||
45 | /* this is the externally visible function used by plugins */ | 45 | /* this is the externally visible function used by plugins */ |