diff options
| author | Julian Andres Klode <jak@debian.org> | 2009-06-08 18:22:32 +0200 |
|---|---|---|
| committer | Julian Andres Klode <jak@debian.org> | 2009-06-08 18:22:32 +0200 |
| commit | 09d94116e3aae865d2b04020725f90814bd7cb3c (patch) | |
| tree | c486936940a3bb35b5fdf06a53ae683b21eb03d6 /python/indexrecords.cc | |
| parent | 13b0eb25325d44c05ac36f6d1069fd735992bbc1 (diff) | |
| download | python-apt-09d94116e3aae865d2b04020725f90814bd7cb3c.tar.gz | |
Fix build failures with python2.4-dbg (const)
Diffstat (limited to 'python/indexrecords.cc')
| -rw-r--r-- | python/indexrecords.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/indexrecords.cc b/python/indexrecords.cc index 917c3bbf..35e41c59 100644 --- a/python/indexrecords.cc +++ b/python/indexrecords.cc @@ -44,7 +44,7 @@ static PyObject *IndexRecords_Load(PyObject *self,PyObject *args) return HandleErrors(Py_BuildValue("i", records->Load(filename))); } -static const char *IndexRecords_Lookup_doc = "lookup(metakey)\n\n" +static char *IndexRecords_Lookup_doc = "lookup(metakey)\n\n" "Lookup the filename given by metakey, return a tuple (hash, size).\n" "The hash part is a HashString() object."; static PyObject *IndexRecords_Lookup(PyObject *self,PyObject *args) |
