Salome HOME
#18963 Minimize compiler warnings
[modules/gui.git] / src / Plot2d / Plot2d_AnalyticalParser.cxx
index 80d78831363e54d9a1192d2aa039b7f075ca8e57..474177fe71566783d2a9ba7a9c3493403d8dff79 100644 (file)
@@ -58,13 +58,13 @@ namespace {
   static PyMethodDef PyStdOut_methods[] = {
     {"write",  (PyCFunction)PyStdOut_write,  METH_VARARGS,
       PyDoc_STR("write(string) -> None")},
-    {NULL,    NULL}   /* sentinel */
+    {0, 0, 0, 0}   /* sentinel */
   };
 
   static PyMemberDef PyStdOut_memberlist[] = {
     {(char*)"softspace", T_INT,  offsetof(PyStdOut, softspace), 0,
      (char*)"flag indicating that a space needs to be printed; used by print"},
-    {NULL} /* Sentinel */
+    {0, 0, 0, 0, 0}   /* sentinel */
   };
 
   static PyTypeObject PyStdOut_Type = {