diff options
author | Roy Marples <roy@marples.name> | 2007-09-25 17:19:02 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2007-09-25 17:19:02 +0000 |
commit | 1a6451654fe365c1981b18f35cb6e453166d1b32 (patch) | |
tree | 35f036a9e6eba2322267b23688495a9f2390ada8 /src/mountinfo.c | |
parent | b24e87794849f38611f0b9644c1e30222d8369a6 (diff) |
We no longer use bool in our public headers, using int instead.
Diffstat (limited to 'src/mountinfo.c')
-rw-r--r-- | src/mountinfo.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mountinfo.c b/src/mountinfo.c index a0250e83..11a94bfc 100644 --- a/src/mountinfo.c +++ b/src/mountinfo.c @@ -364,7 +364,7 @@ int mountinfo (int argc, char **argv) continue; if (skip_point_regex && regexec (skip_point_regex, n, 0, NULL, 0) == 0) continue; - if (! rc_is_env ("RC_QUIET", "yes")) + if (rc_is_env ("RC_QUIET", "yes") != 0) printf ("%s\n", n); result = EXIT_SUCCESS; } |