Browse Source

[1245] remove const for sunstudio build

Jelte Jansen 13 years ago
parent
commit
fac67afcee
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/lib/dns/python/edns_python.cc

+ 1 - 1
src/lib/dns/python/edns_python.cc

@@ -177,7 +177,7 @@ EDNS_toText(const s_EDNS* const self) {
 }
 
 PyObject*
-EDNS_str(PyObject* const self) {
+EDNS_str(PyObject* self) {
     // Simply call the to_text method we already defined
     return (PyObject_CallMethod(self,
                                 const_cast<char*>("to_text"),