aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--src/build.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/build.c b/src/build.c
index 5728155..e57e554 100644
--- a/src/build.c
+++ b/src/build.c
@@ -394,7 +394,7 @@ static unsigned char *hash_file(const char *target) {
return hash;
}
-void sha1_to_hex(const unsigned char *sha1, char *buf) {
+static void sha1_to_hex(const unsigned char *sha1, char *buf) {
static const char hex[] = "0123456789abcdef";
for (int i = 0; i < 20; ++i) {