Browse Source

Fix sintax error on apt-cache

Otavio Salvador 21 years ago
parent
commit
5e126fed99
1 changed files with 1 additions and 1 deletions
  1. 1 1
      cmdline/apt-cache.cc

+ 1 - 1
cmdline/apt-cache.cc

@@ -1230,7 +1230,7 @@ bool DisplayRecord(pkgCache::VerIterator V)
    *DescP='\0';
 
    // Write all the rest
-   if (fwrite(Buffer,1,V.FileList()->Size+1,stdout) < V.FileList()->Size+1))
+   if (fwrite(Buffer,1,V.FileList()->Size+1,stdout) < (size_t)(V.FileList()->Size+1))
    {
       delete [] Buffer;
       return false;