diff options
author | Nanako Shiraishi <nanako3@lavabit.com> | 2008-10-02 12:14:33 +0200 |
---|---|---|
committer | Shawn O. Pearce <spearce@spearce.org> | 2008-10-03 03:03:35 +0200 |
commit | 120a385afb8ce94b3918d74d4a79ca5938a95304 (patch) | |
tree | 124cc1f732844b90b9118b7b55490a2c1499a4c3 /archive.c | |
parent | commit.c: make read_graft_file() static (diff) | |
download | git-120a385afb8ce94b3918d74d4a79ca5938a95304.tar.xz git-120a385afb8ce94b3918d74d4a79ca5938a95304.zip |
archive.c: make archiver static
This variable is not used anywhere outside.
Signed-off-by: Nanako Shiraishi <nanako3@lavabit.com>
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'archive.c')
-rw-r--r-- | archive.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -15,7 +15,7 @@ static char const * const archive_usage[] = { #define USES_ZLIB_COMPRESSION 1 -const struct archiver { +static const struct archiver { const char *name; write_archive_fn_t write_archive; unsigned int flags; |