diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-04-24 19:01:38 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-04-24 19:01:38 +0200 |
| commit | 55eaca76738417f719c1e3b66da94c7307308d74 (patch) | |
| tree | c5a94085f22c64e9435c2cae2386cd64e1b16c53 /python/depcache.cc | |
| parent | aa5b58b56b7e332d15e6ac9f3dfeffa60c2749a6 (diff) | |
| download | python-apt-55eaca76738417f719c1e3b66da94c7307308d74.tar.gz | |
* python/*.cc: Fix build failures with python2.4-dbg.
Diffstat (limited to 'python/depcache.cc')
| -rw-r--r-- | python/depcache.cc | 4 |
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" |
