diff options
Diffstat (limited to 'include/sys/abd.h')
-rw-r--r-- | include/sys/abd.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/sys/abd.h b/include/sys/abd.h index 59b679491..cd7105013 100644 --- a/include/sys/abd.h +++ b/include/sys/abd.h @@ -73,7 +73,7 @@ extern int zfs_abd_scatter_enabled; static inline boolean_t abd_is_linear(abd_t *abd) { - return ((abd->abd_flags & ABD_FLAG_LINEAR) != 0); + return ((abd->abd_flags & ABD_FLAG_LINEAR) != 0 ? B_TRUE : B_FALSE); } /* |