python plugin: Remove "const" of usage strings.
authorFlorian Forster <octo@huhu.verplant.org>
Mon, 3 May 2010 07:21:45 +0000 (09:21 +0200)
committerFlorian Forster <octo@huhu.verplant.org>
Mon, 3 May 2010 07:24:46 +0000 (09:24 +0200)
The struct member isn't const, resulting in a warning.

src/pyvalues.c

index 60462ad..cc7e296 100644 (file)
@@ -1009,7 +1009,7 @@ PyTypeObject NotificationType = {
        Notification_new           /* tp_new */
 };
 
-static const char Signed_doc[] = "This is a long by another name. Use it in meta data dicts\n"
+static char Signed_doc[] = "This is a long by another name. Use it in meta data dicts\n"
                "to choose the way it is stored in the meta data.";
 
 PyTypeObject SignedType = {
@@ -1036,7 +1036,7 @@ PyTypeObject SignedType = {
        Signed_doc                 /* tp_doc */
 };
 
-static const char Unsigned_doc[] = "This is a long by another name. Use it in meta data dicts\n"
+static char Unsigned_doc[] = "This is a long by another name. Use it in meta data dicts\n"
                "to choose the way it is stored in the meta data.";
 
 PyTypeObject UnsignedType = {