summaryrefslogtreecommitdiff
path: root/builtin/update-ref.c
diff options
context:
space:
mode:
authorLibravatar Junio C Hamano <gitster@pobox.com>2011-08-25 16:00:07 -0700
committerLibravatar Junio C Hamano <gitster@pobox.com>2011-08-25 16:00:07 -0700
commit1952e102b702b977d6bdfcee7cb48b843cb92049 (patch)
tree33dc912c82c724e819bbf735acd9ef362ed68dfc /builtin/update-ref.c
parentSync with 1.7.6.1 (diff)
parentwhitespace: have SP on both sides of an assignment "=" (diff)
downloadtgif-1952e102b702b977d6bdfcee7cb48b843cb92049.tar.xz
Merge branch 'maint'
* maint: whitespace: have SP on both sides of an assignment "=" update-ref: whitespace fix
Diffstat (limited to 'builtin/update-ref.c')
-rw-r--r--builtin/update-ref.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/builtin/update-ref.c b/builtin/update-ref.c
index 76ba1d5881..835c62ab15 100644
--- a/builtin/update-ref.c
+++ b/builtin/update-ref.c
@@ -11,7 +11,7 @@ static const char * const git_update_ref_usage[] = {
int cmd_update_ref(int argc, const char **argv, const char *prefix)
{
- const char *refname, *oldval, *msg=NULL;
+ const char *refname, *oldval, *msg = NULL;
unsigned char sha1[20], oldsha1[20];
int delete = 0, no_deref = 0, flags = 0;
struct option options[] = {