diff options
author | Junio C Hamano <gitster@pobox.com> | 2012-04-26 10:54:58 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2012-04-26 10:55:08 -0700 |
commit | 210a75c38c2574a7a3a2b4e8178203cc9809889c (patch) | |
tree | 6d823ca9793523a3c89f5b991e9daa3c9e8afcc9 /bundle.c | |
parent | f9d995d5dd39c942c06829e45f195eeaa99936e1 (diff) | |
parent | 868d662399786462f87df45c3d68bd5390311a6e (diff) | |
download | git-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.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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); |