Skip to content

Commit 008f20c

Browse files
committed
Prefer nullptr over NULL
1 parent 9879dea commit 008f20c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

c_glib/arrow-glib/compute.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9536,7 +9536,7 @@ GArrowMakeStructOptions *
95369536
garrow_make_struct_options_new_raw(const arrow::compute::MakeStructOptions *arrow_options)
95379537
{
95389538
auto options =
9539-
GARROW_MAKE_STRUCT_OPTIONS(g_object_new(GARROW_TYPE_MAKE_STRUCT_OPTIONS, NULL));
9539+
GARROW_MAKE_STRUCT_OPTIONS(g_object_new(GARROW_TYPE_MAKE_STRUCT_OPTIONS, nullptr));
95409540
auto arrow_new_options = static_cast<arrow::compute::MakeStructOptions *>(
95419541
garrow_function_options_get_raw(GARROW_FUNCTION_OPTIONS(options)));
95429542
*arrow_new_options = *arrow_options;

0 commit comments

Comments
 (0)