From 3379a215cde6c9e76f7e35344df1606a5c9f52e4 Mon Sep 17 00:00:00 2001 From: Andre Masella Date: Tue, 13 Sep 2022 08:25:13 -0400 Subject: [PATCH] Fix pointer formatting As titled Co-authored-by: stuartarchibald --- numba/_typeof.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/numba/_typeof.cpp b/numba/_typeof.cpp index 5d56c3b2419..8f32363cc3b 100644 --- a/numba/_typeof.cpp +++ b/numba/_typeof.cpp @@ -843,8 +843,8 @@ int typecode_devicendarray(PyObject *dispatcher, PyObject *ary) int ndim; int layout = 0; PyObject *ndim_obj = nullptr; - PyObject* num_obj = nullptr; - PyObject* dtype_obj = nullptr; + PyObject *num_obj = nullptr; + PyObject *dtype_obj = nullptr; int dtype_num = 0; PyObject* flags = PyObject_GetAttrString(ary, "flags");