Skip to content

Commit 7993578

Browse files
committed
minor c string fix after merge
1 parent a36c2f6 commit 7993578

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/core/src/context.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@ impl PySessionConfig {
196196
let capsule = capsule.cast::<PyCapsule>()?;
197197

198198
let extension: NonNull<FFI_ExtensionOptions> = capsule
199-
.pointer_checked(Some(c_str!("datafusion_extension_options")))?
199+
.pointer_checked(Some(c"datafusion_extension_options"))?
200200
.cast();
201201
let mut extension = unsafe { extension.as_ref() }.clone();
202202

0 commit comments

Comments
 (0)