Skip to content

Commit cfc4090

Browse files
committed
Prefer nullptr
1 parent 5769f5c commit cfc4090

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
@@ -10629,7 +10629,7 @@ garrow_make_struct_options_class_init(GArrowMakeStructOptionsClass *klass)
1062910629
GArrowMakeStructOptions *
1063010630
garrow_make_struct_options_new(void)
1063110631
{
10632-
auto options = g_object_new(GARROW_TYPE_MAKE_STRUCT_OPTIONS, NULL);
10632+
auto options = g_object_new(GARROW_TYPE_MAKE_STRUCT_OPTIONS, nullptr);
1063310633
return GARROW_MAKE_STRUCT_OPTIONS(options);
1063410634
}
1063510635

0 commit comments

Comments
 (0)