summaryrefslogtreecommitdiff
path: root/python/depcache.cc
diff options
context:
space:
mode:
authorJulian Andres Klode <jak@debian.org>2009-04-24 19:01:38 +0200
committerJulian Andres Klode <jak@debian.org>2009-04-24 19:01:38 +0200
commit55eaca76738417f719c1e3b66da94c7307308d74 (patch)
treec5a94085f22c64e9435c2cae2386cd64e1b16c53 /python/depcache.cc
parentaa5b58b56b7e332d15e6ac9f3dfeffa60c2749a6 (diff)
downloadpython-apt-55eaca76738417f719c1e3b66da94c7307308d74.tar.gz
* python/*.cc: Fix build failures with python2.4-dbg.
Diffstat (limited to 'python/depcache.cc')
-rw-r--r--python/depcache.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/depcache.cc b/python/depcache.cc
index 70d5af4e..ef2240ce 100644
--- a/python/depcache.cc
+++ b/python/depcache.cc
@@ -614,7 +614,7 @@ static PyObject *PkgDepCacheNew(PyTypeObject *type,PyObject *Args,PyObject *kwds
return DepCachePyObj;
}
-static const char *doc_PkgDepCache = "DepCache(cache) -> DepCache() object\n\n"
+static char *doc_PkgDepCache = "DepCache(cache) -> DepCache() object\n\n"
"A DepCache() holds extra information on the state of the packages.\n\n"
"The parameter *cache* refers to an apt_pkg.Cache() object.";
PyTypeObject PkgDepCacheType =
@@ -893,7 +893,7 @@ static PyObject *PkgActionGroupNew(PyTypeObject *type,PyObject *Args,PyObject *k
}
-static const char *doc_PkgActionGroup = "ActionGroup(depcache)\n\n"
+static char *doc_PkgActionGroup = "ActionGroup(depcache)\n\n"
"Create a new ActionGroup() object. The parameter *depcache* refers to an\n"
"apt_pkg.DepCache() object.\n\n"
"ActionGroups disable certain cleanup actions, so modifying many packages\n"