summaryrefslogtreecommitdiff
path: root/python/acquire.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/acquire.cc
parentaa5b58b56b7e332d15e6ac9f3dfeffa60c2749a6 (diff)
downloadpython-apt-55eaca76738417f719c1e3b66da94c7307308d74.tar.gz
* python/*.cc: Fix build failures with python2.4-dbg.
Diffstat (limited to 'python/acquire.cc')
-rw-r--r--python/acquire.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/python/acquire.cc b/python/acquire.cc
index 1cdf0cb9..ccd3a479 100644
--- a/python/acquire.cc
+++ b/python/acquire.cc
@@ -217,7 +217,7 @@ static PyObject *PkgAcquireNew(PyTypeObject *type,PyObject *Args,PyObject *kwds)
return FetcherObj;
}
-static const char *doc_PkgAcquire = "Acquire(progress) -> Acquire() object.\n\n"
+static char *doc_PkgAcquire = "Acquire(progress) -> Acquire() object.\n\n"
"Create a new acquire object. The parameter *progress* can be used to\n"
"specify a apt.progress.FetchProgress() object, which will display the\n"
"progress of the fetching.";
@@ -305,7 +305,7 @@ static PyObject *PkgAcquireFileNew(PyTypeObject *type, PyObject *Args, PyObject
}
-static const char *doc_PkgAcquireFile =
+static char *doc_PkgAcquireFile =
"AcquireFile(owner, uri[, md5, size, descr, short_descr, dest_dir,"
"dest_file]) -> New AcquireFile() object\n\n"
"The parameter *owner* refers to an apt_pkg.Acquire() object. You can use\n"