Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fecf5d1

Browse files
author
Hirokazu Yamamoto
committed
Fixed warning. (Should not use *const* as variable name)
1 parent eea4fb9 commit fecf5d1

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Modules/_json.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ encoder_listencode_obj(PyEncoderObject *s, PyObject *rval, PyObject *obj, Py_ssi
106106
static int
107107
encoder_listencode_dict(PyEncoderObject *s, PyObject *rval, PyObject *dct, Py_ssize_t indent_level);
108108
static PyObject *
109-
_encoded_const(PyObject *const);
109+
_encoded_const(PyObject *obj);
110110
static void
111111
raise_errmsg(char *msg, PyObject *s, Py_ssize_t end);
112112
static PyObject *

0 commit comments

Comments
 (0)