diff options
Diffstat (limited to 'lib/utils_disk.c')
-rw-r--r-- | lib/utils_disk.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/utils_disk.c b/lib/utils_disk.c index 3f9c8a9a..9324f5f3 100644 --- a/lib/utils_disk.c +++ b/lib/utils_disk.c @@ -181,9 +181,9 @@ np_regex_match_mount_entry (struct mount_entry* me, regex_t* re) { if (regexec(re, me->me_devname, (size_t) 0, NULL, 0) == 0 || regexec(re, me->me_mountdir, (size_t) 0, NULL, 0) == 0 ) { - return true; + return TRUE; } else { - return false; + return FALSE; } } |