aboutsummaryrefslogtreecommitdiffstats
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
parentThe fifth batch of topics graduated to 'master' (diff)
parentStart preparing for 1.7.10.1 (diff)
downloadgit-210a75c38c2574a7a3a2b4e8178203cc9809889c.tar.gz
git-210a75c38c2574a7a3a2b4e8178203cc9809889c.zip
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);