From 3e6609a0dcb064489d91f685583392d8a73219b9 Mon Sep 17 00:00:00 2001 From: Germano Cavalcante Date: Sat, 15 May 2021 14:13:22 -0300 Subject: Cleanup: silence unused parameter warnings Introduced in rB48fa029dd11b. --- source/blender/python/gpu/gpu_py_platform.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'source/blender/python') diff --git a/source/blender/python/gpu/gpu_py_platform.c b/source/blender/python/gpu/gpu_py_platform.c index 5247646fcb6..e49ad18dfd8 100644 --- a/source/blender/python/gpu/gpu_py_platform.c +++ b/source/blender/python/gpu/gpu_py_platform.c @@ -33,17 +33,17 @@ /** \name Functions * \{ */ -static PyObject *pygpu_platform_vendor_get(PyObject *UNUSED(self), PyObject *value) +static PyObject *pygpu_platform_vendor_get(PyObject *UNUSED(self)) { return PyUnicode_FromString(GPU_platform_vendor()); } -static PyObject *pygpu_platform_renderer_get(PyObject *UNUSED(self), PyObject *value) +static PyObject *pygpu_platform_renderer_get(PyObject *UNUSED(self)) { return PyUnicode_FromString(GPU_platform_renderer()); } -static PyObject *pygpu_platform_version_get(PyObject *UNUSED(self), PyObject *value) +static PyObject *pygpu_platform_version_get(PyObject *UNUSED(self)) { return PyUnicode_FromString(GPU_platform_version()); } -- cgit v1.2.3