diff options
author | Junio C Hamano <gitster@pobox.com> | 2017-04-17 08:29:27 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-04-17 08:29:27 +0200 |
commit | 93a96cced3ff4181bde02b1688c15d5de03db7be (patch) | |
tree | 2e2c7b3c14372f4a8f74e5772a3ea1ac9319d562 /remote.c | |
parent | Merge branch 'jk/snprintf-cleanups' (diff) | |
parent | remote.[ch]: parse_push_cas_option() can be static (diff) | |
download | git-93a96cced3ff4181bde02b1688c15d5de03db7be.tar.xz git-93a96cced3ff4181bde02b1688c15d5de03db7be.zip |
Merge branch 'jc/unused-symbols'
Code cleanup.
* jc/unused-symbols:
remote.[ch]: parse_push_cas_option() can be static
Diffstat (limited to 'remote.c')
-rw-r--r-- | remote.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -2279,7 +2279,7 @@ static struct push_cas *add_cas_entry(struct push_cas_option *cas, return entry; } -int parse_push_cas_option(struct push_cas_option *cas, const char *arg, int unset) +static int parse_push_cas_option(struct push_cas_option *cas, const char *arg, int unset) { const char *colon; struct push_cas *entry; |