summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--apt-pkg/contrib/sha1.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/apt-pkg/contrib/sha1.cc b/apt-pkg/contrib/sha1.cc
index d7f606982..9b402c523 100644
--- a/apt-pkg/contrib/sha1.cc
+++ b/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