Signed-off-by: Alangi Derick <alangiderick@xxxxxxxxx> --- builtin/diff-tree.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/builtin/diff-tree.c b/builtin/diff-tree.c index 12b683d..602b5f9 100644 --- a/builtin/diff-tree.c +++ b/builtin/diff-tree.c @@ -45,7 +45,7 @@ static int stdin_diff_trees(struct tree *tree1, char *line, int len) unsigned char sha1[20]; struct tree *tree2; if (len != 82 || !isspace(line[40]) || get_sha1_hex(line + 41, sha1)) - return error("Need exactly two trees, separated by a space"); + return error(_("Need exactly two trees, separated by a space")); tree2 = lookup_tree(sha1); if (!tree2 || parse_tree(tree2)) return -1; @@ -75,7 +75,7 @@ static int diff_tree_stdin(char *line) return stdin_diff_commit((struct commit *)obj, line, len); if (obj->type == OBJ_TREE) return stdin_diff_trees((struct tree *)obj, line, len); - error("Object %s is a %s, not a commit or tree", + error(_("Object %s is a %s, not a commit or tree"), sha1_to_hex(sha1), typename(obj->type)); return -1; } -- 2.4.0.5.g7a7787e.dirty -- To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html