summaryrefslogtreecommitdiffstats
path: root/label.c
diff options
context:
space:
mode:
Diffstat (limited to 'label.c')
-rw-r--r--label.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/label.c b/label.c
index 50f0372..d0ac04c 100644
--- a/label.c
+++ b/label.c
@@ -37,12 +37,9 @@ static PyObject *Label_new(PyTypeObject *type,
#define Label_HELP "Label(context=None)"
static int Label_init(LabelObject *self, PyObject *args, PyObject *kwds)
{
+ static char *kwlist[] = { "context", NULL };
ContextObject *cxt = NULL;
struct fdisk_label *lb;
- char *kwlist[] = {
- "context",
- NULL
- };
if (!PyArg_ParseTupleAndKeywords(args,
kwds, "|O!", kwlist,