diff options
Diffstat (limited to 'apt-pkg/contrib/cdromutl.cc')
-rw-r--r-- | apt-pkg/contrib/cdromutl.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/contrib/cdromutl.cc b/apt-pkg/contrib/cdromutl.cc index f703621c8..dae6f0528 100644 --- a/apt-pkg/contrib/cdromutl.cc +++ b/apt-pkg/contrib/cdromutl.cc @@ -1,6 +1,6 @@ // -*- mode: cpp; mode: fold -*- // Description /*{{{*/ -// $Id: cdromutl.cc,v 1.10 1999/12/10 06:30:42 jgg Exp $ +// $Id: cdromutl.cc,v 1.11 1999/12/10 23:40:29 jgg Exp $ /* ###################################################################### CDROM Utilities - Some functions to manipulate CDROM mounts. @@ -170,7 +170,7 @@ bool IdentCdrom(string CD,string &Res,unsigned int Version) struct stat Buf; if (stat(Dir->d_name,&Buf) != 0) continue; - sprintf(S,"%lu",Buf.st_mtime); + sprintf(S,"%lu",(unsigned long)Buf.st_mtime); } Hash.Add(S); |