Skip to content

Commit

Permalink
build
Browse files Browse the repository at this point in the history
  • Loading branch information
DmitriyMusatkin committed Oct 13, 2023
1 parent d04c6d7 commit 9867835
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/crypto.c
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ PyObject *aws_py_rsa_private_key_from_pem_data(PyObject *self, PyObject *args) {
(void)self;

struct aws_byte_cursor pem_data_cur;
if (!PyArg_ParseTuple(args, "s#", &pem_data.ptr, &pem_data.len)) {
if (!PyArg_ParseTuple(args, "s#", &pem_data_cur.ptr, &pem_data_cur.len)) {
return NULL;
}

Expand Down

0 comments on commit 9867835

Please sign in to comment.