summaryrefslogtreecommitdiff
path: root/src/pooptmodule.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/pooptmodule.c')
-rw-r--r--src/pooptmodule.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/pooptmodule.c b/src/pooptmodule.c
index 64c1870f..43e4ff7c 100644
--- a/src/pooptmodule.c
+++ b/src/pooptmodule.c
@@ -42,7 +42,7 @@ static PyObject* poopt_cut_text(PyObject* self, PyObject* args)
const char* buffer;
const int buffer_len;
- if (PyArg_ParseTuple(args, "Is#", &width, &buffer, &buffer_len) == 0)
+ if (PyArg_ParseTuple(args, "ks#", &width, &buffer, &buffer_len) == 0)
return NULL;
/* Pointer to the end of the string */
@@ -221,9 +221,9 @@ PyDoc_STRVAR(poopt_cut_by_columns_doc, "cut_by_columns(n, string)\n\n\nreturns a
static PyObject* poopt_cut_by_columns(PyObject* self, PyObject* args)
{
const char* start;
- const size_t len;
+ const int len;
const size_t limit;
- if (PyArg_ParseTuple(args, "Is#", &limit, &start, &len) == 0)
+ if (PyArg_ParseTuple(args, "ks#", &limit, &start, &len) == 0)
return NULL;
const char* const end = start + len;