]> Pileus Git - ~andy/git/blobdiff - name-hash.c
Typo fix: replacing it's -> its
[~andy/git] / name-hash.c
index 91241336f827090848a019990253e20725ff62cb..6d7e1980c62f96fc3614ddd130ce25a765fceae5 100644 (file)
@@ -24,11 +24,11 @@ static unsigned int hash_name(const char *name, int namelen)
 {
        unsigned int hash = 0x123;
 
-       do {
+       while (namelen--) {
                unsigned char c = *name++;
                c = icase_hash(c);
                hash = hash*101 + c;
-       } while (--namelen);
+       }
        return hash;
 }