diff options
author | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:33 +0000 |
---|---|---|
committer | Arch Librarian <arch@canonical.com> | 2004-09-20 16:54:33 +0000 |
commit | 5b76e7f23d2d4da544541ef90ee253c50eb3cc64 (patch) | |
tree | 7a7ecb33ff65e2632e17c81437d24959370036c8 /cmdline | |
parent | 40d151d8f9918c3c7cc7b02706d3d5fd997ac400 (diff) |
Fixed G++ compile problem
Author: jgg
Date: 1999-08-08 03:34:08 GMT
Fixed G++ compile problem
Diffstat (limited to 'cmdline')
-rw-r--r-- | cmdline/apt-cdrom.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmdline/apt-cdrom.cc b/cmdline/apt-cdrom.cc index f601f17db..3b1b6da82 100644 --- a/cmdline/apt-cdrom.cc +++ b/cmdline/apt-cdrom.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: apt-cdrom.cc,v 1.28 1999/07/12 02:59:36 jgg Exp $ +// $Id: apt-cdrom.cc,v 1.29 1999/08/08 03:34:13 jgg Exp $ /* ###################################################################### APT CDROM - Tool for handling APT's CDROM database. @@ -406,7 +406,7 @@ bool WriteSourceList(string Name,vector<string> &List,bool Source) // Grok it string cType; string URI; - char *C = Buffer; + const char *C = Buffer; if (ParseQuoteWord(C,cType) == false || ParseQuoteWord(C,URI) == false) { |