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 8c17fa4a..b555417a 100644 --- a/lib/extra_opts.c +++ b/lib/extra_opts.c @@ -35,11 +35,11 @@ int is_option2 (char *str) { if (!str) - return 0; + return FALSE; else if (strspn (str, "-") == 1 || strspn (str, "-") == 2) - return 1; + return TRUE; else - return 0; + return FALSE; } /* this is the externally visible function used by plugins */ |