diff options
author | René Scharfe <rene.scharfe@lsrfire.ath.cx> | 2007-10-21 11:23:49 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2007-10-22 00:00:40 -0400 |
commit | c32f749fec69f92ce3b076128e6322f8130bd881 (patch) | |
tree | 0ada7de6f324a57dccd4b7bba9eaa05091a252cc /builtin-apply.c | |
parent | 5be507fc955bd14643cac1162cfaa592d0e236ba (diff) | |
download | git-c32f749fec69f92ce3b076128e6322f8130bd881.tar.gz |
Correct some sizeof(size_t) != sizeof(unsigned long) typing errors
Fix size_t vs. unsigned long pointer mismatch warnings introduced
with the addition of strbuf_detach().
Signed-off-by: Rene Scharfe <rene.scharfe@lsrfire.ath.cx>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'builtin-apply.c')
-rw-r--r-- | builtin-apply.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin-apply.c b/builtin-apply.c index 05c6bc3592..8411b38c79 100644 --- a/builtin-apply.c +++ b/builtin-apply.c @@ -152,7 +152,7 @@ struct patch { unsigned int is_rename:1; struct fragment *fragments; char *result; - unsigned long resultsize; + size_t resultsize; char old_sha1_prefix[41]; char new_sha1_prefix[41]; struct patch *next; |