Explorar el Código

Fix syntax in sha1.cc

Matt Zimmerman hace 21 años
padre
commit
879cd3ad83
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      apt-pkg/contrib/sha1.cc

+ 2 - 2
apt-pkg/contrib/sha1.cc

@@ -344,9 +344,9 @@ bool SHA1Summation::AddFD(int Fd,unsigned long Size)
    unsigned char Buf[64 * 64];
    int Res = 0;
    int ToEOF = (Size == 0);
-   while (Size != 0 || ToEOF);
+   while (Size != 0 || ToEOF)
    {
-      int n = sizeof(Buf);
+      unsigned n = sizeof(Buf);
       if (!ToEOF) n = MIN(Size,n);
       Res = read(Fd,Buf,n);
       if (Res < 0 || (!ToEOF && (unsigned) Res != n)) // error, or short read