diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:22 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:22 +0000 |
commit | 727f18afe9c2eec15ee446cb667d9561644b5bf6 (patch) | |
tree | 7b8f7e3cd17bd725d4c47e22384400c002ca3982 /apt-pkg/sourcelist.cc | |
parent | 140fd43fa632739af061834a6c1b7ee0f73a35b7 (diff) |
Daniel Jacobowitz's gcc 2.95 C++ patch
Author: jgg
Date: 1999-07-20 05:53:32 GMT
Daniel Jacobowitz's gcc 2.95 C++ patch
Diffstat (limited to 'apt-pkg/sourcelist.cc')
-rw-r--r-- | apt-pkg/sourcelist.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/sourcelist.cc b/apt-pkg/sourcelist.cc index c4f225fde..a7e6b0e6a 100644 --- a/apt-pkg/sourcelist.cc +++ b/apt-pkg/sourcelist.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: sourcelist.cc,v 1.13 1999/04/07 05:30:17 jgg Exp $ +// $Id: sourcelist.cc,v 1.14 1999/07/20 05:53:33 jgg Exp $ /* ###################################################################### List of Sources @@ -73,7 +73,7 @@ bool pkgSourceList::Read(string File) string Type; string URI; Item Itm; - char *C = Buffer; + const char *C = Buffer; if (ParseQuoteWord(C,Type) == false) return _error->Error("Malformed line %u in source list %s (type)",CurLine,File.c_str()); if (ParseQuoteWord(C,URI) == false) |