summaryrefslogtreecommitdiff
path: root/bundle.c
diff options
context:
space:
mode:
authorJunio C Hamano <gitster@pobox.com>2012-04-26 10:54:58 -0700
committerJunio C Hamano <gitster@pobox.com>2012-04-26 10:55:08 -0700
commit210a75c38c2574a7a3a2b4e8178203cc9809889c (patch)
tree6d823ca9793523a3c89f5b991e9daa3c9e8afcc9 /bundle.c
parentf9d995d5dd39c942c06829e45f195eeaa99936e1 (diff)
parent868d662399786462f87df45c3d68bd5390311a6e (diff)
downloadgit-210a75c38c2574a7a3a2b4e8178203cc9809889c.tar.gz
Merge bundle error message fix in
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'bundle.c')
-rw-r--r--bundle.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundle.c b/bundle.c
index d9cfd90534..27ab32e431 100644
--- a/bundle.c
+++ b/bundle.c
@@ -289,7 +289,7 @@ int create_bundle(struct bundle_header *header, const char *path,
argc = setup_revisions(argc, argv, &revs, NULL);
if (argc > 1)
- return error("unrecognized argument: %s'", argv[1]);
+ return error("unrecognized argument: %s", argv[1]);
object_array_remove_duplicates(&revs.pending);