From 9bf2d030c9135a277449d455fb1561508c942326 Mon Sep 17 00:00:00 2001 From: "Jose M. Guisado" Date: Thu, 15 Dec 2022 17:51:17 +0100 Subject: fdisk: declare kwlist array static --- context.c | 2 +- label.c | 5 +---- partition.c | 2 +- 3 files changed, 3 insertions(+), 6 deletions(-) diff --git a/context.c b/context.c index 07d9304..e119178 100644 --- a/context.c +++ b/context.c @@ -43,7 +43,7 @@ static PyObject *Context_new(PyTypeObject *type, #define Context_HELP "Context(device=None, details=True, readonly=False)" static int Context_init(ContextObject *self, PyObject *args, PyObject *kwds) { - char *kwlist[] = { + static char *kwlist[] = { "device", "details", "readonly", NULL }; 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, diff --git a/partition.c b/partition.c index 8685c3f..5111bec 100644 --- a/partition.c +++ b/partition.c @@ -40,7 +40,7 @@ static PyObject *Partition_new(PyTypeObject *type, "end_follow_default=False)" static int Partition_init(PartitionObject *self, PyObject *args, PyObject *kwds) { - char *kwlist[] = { + static char *kwlist[] = { "partno_follow_default", "start_follow_default", "end_follow_default", -- cgit v1.2.3-18-g5258