diff options
Diffstat (limited to 'Modules/cryptmodule.c')
-rw-r--r-- | Modules/cryptmodule.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/cryptmodule.c b/Modules/cryptmodule.c index 770965e..d3e0793 100644 --- a/Modules/cryptmodule.c +++ b/Modules/cryptmodule.c @@ -12,7 +12,7 @@ static PyObject *crypt_crypt(PyObject *self, PyObject *args) { char *word, *salt; - extern char * crypt(); + extern char * crypt(const char *, const char *); if (!PyArg_Parse(args, "(ss)", &word, &salt)) { return NULL; |