mirror of
https://github.com/samba-team/samba.git
synced 2025-07-31 20:22:15 +03:00
@ -27,7 +27,7 @@ static PyObject *uuid_random(PyObject *self, PyObject *args)
|
||||
PyObject *pyobj;
|
||||
char *str;
|
||||
|
||||
if (!PyArg_ParseTuple(args, (char *)""))
|
||||
if (!PyArg_ParseTuple(args, ""))
|
||||
return NULL;
|
||||
|
||||
guid = GUID_random();
|
||||
@ -52,7 +52,7 @@ static PyMethodDef methods[] = {
|
||||
|
||||
void inituuid(void)
|
||||
{
|
||||
PyObject *mod = Py_InitModule3((char *)"uuid", methods, "UUID helper routines");
|
||||
PyObject *mod = Py_InitModule3("uuid", methods, "UUID helper routines");
|
||||
if (mod == NULL)
|
||||
return;
|
||||
}
|
||||
|
Reference in New Issue
Block a user