git.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 2/2] Make write_sha1_file_prepare() static
@ 2006-10-14 10:45 Rene Scharfe
  0 siblings, 0 replies; only message in thread
From: Rene Scharfe @ 2006-10-14 10:45 UTC (permalink / raw)
  To: Junio C Hamano; +Cc: Git Mailing List

There are no callers of write_sha1_file_prepare() left outside of
sha1_file.c, so make it static.

---
 cache.h     |    6 ------
 sha1_file.c |    9 +++------
 2 files changed, 3 insertions(+), 12 deletions(-)

diff --git a/cache.h b/cache.h
index aa3a562..c354701 100644
--- a/cache.h
+++ b/cache.h
@@ -247,12 +247,6 @@ extern void * unpack_sha1_file(void *map
 extern void * read_sha1_file(const unsigned char *sha1, char *type, unsigned long *size);
 extern int hash_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *sha1);
 extern int write_sha1_file(void *buf, unsigned long len, const char *type, unsigned char *return_sha1);
-extern char *write_sha1_file_prepare(void *buf,
-				     unsigned long len,
-				     const char *type,
-				     unsigned char *sha1,
-				     unsigned char *hdr,
-				     int *hdrlen);
 
 extern int check_sha1_signature(const unsigned char *sha1, void *buf, unsigned long size, const char *type);
 
diff --git a/sha1_file.c b/sha1_file.c
index 6c64ec4..d111be7 100644
--- a/sha1_file.c
+++ b/sha1_file.c
@@ -1347,12 +1347,9 @@ void *read_object_with_reference(const u
 	}
 }
 
-char *write_sha1_file_prepare(void *buf,
-			      unsigned long len,
-			      const char *type,
-			      unsigned char *sha1,
-			      unsigned char *hdr,
-			      int *hdrlen)
+static char *write_sha1_file_prepare(void *buf, unsigned long len,
+                                     const char *type, unsigned char *sha1,
+                                     unsigned char *hdr, int *hdrlen)
 {
 	SHA_CTX c;
 
-- 
1.4.3.rc2.gdce3

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2006-10-14 10:45 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2006-10-14 10:45 [PATCH 2/2] Make write_sha1_file_prepare() static Rene Scharfe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).