From: Junio C Hamano Date: Tue, 12 Jan 2010 06:31:58 +0000 (-0800) Subject: submodule.c: mark file-local function static X-Git-Tag: v1.7.0-rc0~77^2~8 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=cb58c932a58e704b840ede37c55ce3e59a9e7544;p=git.git submodule.c: mark file-local function static Signed-off-by: Junio C Hamano --- diff --git a/submodule.c b/submodule.c index 86aad653b..3007f7d5a 100644 --- a/submodule.c +++ b/submodule.c @@ -5,7 +5,7 @@ #include "commit.h" #include "revision.h" -int add_submodule_odb(const char *path) +static int add_submodule_odb(const char *path) { struct strbuf objects_directory = STRBUF_INIT; struct alternate_object_database *alt_odb;