Code

sha1_file.c: fix typo
authorFelipe Contreras <felipe.contreras@gmail.com>
Tue, 24 Feb 2009 21:59:05 +0000 (23:59 +0200)
committerJunio C Hamano <gitster@pobox.com>
Wed, 25 Feb 2009 08:49:54 +0000 (00:49 -0800)
it's != its

Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
sha1_file.c

index 5b6e0f61faa9d0ab93507e59b1e4704df97d9b79..032300c4c6434701e802df729cd74245e543de20 100644 (file)
@@ -801,7 +801,7 @@ unsigned char* use_pack(struct packed_git *p,
        if (p->pack_fd == -1 && open_packed_git(p))
                die("packfile %s cannot be accessed", p->pack_name);
 
-       /* Since packfiles end in a hash of their content and its
+       /* Since packfiles end in a hash of their content and it's
         * pointless to ask for an offset into the middle of that
         * hash, and the in_window function above wouldn't match
         * don't allow an offset too close to the end of the file.