diff options
author | Felipe Contreras <felipe.contreras@gmail.com> | 2009-02-24 23:59:05 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2009-02-25 00:49:54 -0800 |
commit | a9d98a148dd5ed14d9e74a1dfc5ec1ca3632f4f0 (patch) | |
tree | d654023899429af1fa1c64c92ade49bef429ec27 /sha1_file.c | |
parent | 9ccb3bca5776278aa4c2bd1da41c07edce68dfd1 (diff) | |
download | git-a9d98a148dd5ed14d9e74a1dfc5ec1ca3632f4f0.tar.gz git-a9d98a148dd5ed14d9e74a1dfc5ec1ca3632f4f0.tar.xz |
sha1_file.c: fix typo
it's != its
Signed-off-by: Felipe Contreras <felipe.contreras@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'sha1_file.c')
-rw-r--r-- | sha1_file.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sha1_file.c b/sha1_file.c index 5b6e0f61f..032300c4c 100644 --- a/sha1_file.c +++ b/sha1_file.c @@ -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. |