mirror of
https://git.freebsd.org/ports.git
synced 2025-06-08 14:20:33 -04:00
PR: ports/104323 Submitted by: TAOKA Fumiyoshi <fmysh@iijmio-mail.jp> Approved by: maintainer timeout
11 lines
317 B
C++
11 lines
317 B
C++
--- Common/vtkPythonUtil.cxx.orig Thu Oct 12 03:11:22 2006
|
|
+++ Common/vtkPythonUtil.cxx Thu Oct 12 03:11:33 2006
|
|
@@ -731,7 +731,7 @@
|
|
}
|
|
if (strcmp(name, "__doc__") == 0)
|
|
{
|
|
- char *doc = t->tp_doc;
|
|
+ const char *doc = t->tp_doc;
|
|
if (doc != NULL)
|
|
{
|
|
return PyString_FromString(doc);
|