diff options
Diffstat (limited to 'apt-pkg/contrib')
-rw-r--r-- | apt-pkg/contrib/fileutl.cc | 4 | ||||
-rw-r--r-- | apt-pkg/contrib/fileutl.h | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/apt-pkg/contrib/fileutl.cc b/apt-pkg/contrib/fileutl.cc index 3ca36377a..b5cdf782b 100644 --- a/apt-pkg/contrib/fileutl.cc +++ b/apt-pkg/contrib/fileutl.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: fileutl.cc,v 1.14 1998/11/23 07:03:06 jgg Exp $ +// $Id: fileutl.cc,v 1.15 1998/11/27 01:14:08 jgg Exp $ /* ###################################################################### File Utilities @@ -234,7 +234,7 @@ bool FileFd::Read(void *To,unsigned long Size) // FileFd::Write - Write to the file /*{{{*/ // --------------------------------------------------------------------- /* */ -bool FileFd::Write(void *From,unsigned long Size) +bool FileFd::Write(const void *From,unsigned long Size) { if (write(iFd,From,Size) != (signed)Size) { diff --git a/apt-pkg/contrib/fileutl.h b/apt-pkg/contrib/fileutl.h index 31af3d28b..46eefc646 100644 --- a/apt-pkg/contrib/fileutl.h +++ b/apt-pkg/contrib/fileutl.h @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: fileutl.h,v 1.9 1998/11/23 07:03:07 jgg Exp $ +// $Id: fileutl.h,v 1.10 1998/11/27 01:14:09 jgg Exp $ /* ###################################################################### File Utilities @@ -41,7 +41,7 @@ class FileFd enum OpenMode {ReadOnly,WriteEmpty,WriteExists,WriteAny}; bool Read(void *To,unsigned long Size); - bool Write(void *From,unsigned long Size); + bool Write(const void *From,unsigned long Size); bool Seek(unsigned long To); unsigned long Size(); bool Close(); |