diff options
author | Ævar Arnfjörð Bjarmason <avarab@gmail.com> | 2018-06-05 14:40:43 +0000 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-06-11 09:41:01 -0700 |
commit | 17b44aebb59379efd30e5c7c81b66d254d48066b (patch) | |
tree | 048588c516fcbd68add09f157c3383101d0ea076 | |
parent | checkout tests: index should be clean after dwim checkout (diff) | |
download | tgif-17b44aebb59379efd30e5c7c81b66d254d48066b.tar.xz |
checkout.h: wrap the arguments to unique_tracking_name()
The line was too long already, and will be longer still when a later
change adds another argument.
Signed-off-by: Ævar Arnfjörð Bjarmason <avarab@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
-rw-r--r-- | checkout.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/checkout.h b/checkout.h index 9980711179..4cd4cd1c23 100644 --- a/checkout.h +++ b/checkout.h @@ -8,6 +8,7 @@ * tracking branch. Return the name of the remote if such a branch * exists, NULL otherwise. */ -extern const char *unique_tracking_name(const char *name, struct object_id *oid); +extern const char *unique_tracking_name(const char *name, + struct object_id *oid); #endif /* CHECKOUT_H */ |