From e6b98c55a78c2989aa914f55bbc66e8227d4d2fb Mon Sep 17 00:00:00 2001 From: Paul Mattione Date: Thu, 24 Oct 2024 13:35:21 -0400 Subject: [PATCH] more style fixes --- cpp/src/io/parquet/page_hdr.cu | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpp/src/io/parquet/page_hdr.cu b/cpp/src/io/parquet/page_hdr.cu index d233b7b4a78..a8a8c441a84 100644 --- a/cpp/src/io/parquet/page_hdr.cu +++ b/cpp/src/io/parquet/page_hdr.cu @@ -184,7 +184,7 @@ __device__ decode_kernel_mask kernel_mask_for_page(PageInfo const& page, } else if (is_boolean(chunk)) { return is_list(chunk) ? decode_kernel_mask::BOOLEAN_LIST : is_nested(chunk) ? decode_kernel_mask::BOOLEAN_NESTED - : decode_kernel_mask::BOOLEAN; + : decode_kernel_mask::BOOLEAN; } if (!is_byte_array(chunk)) {