From: Michele Ballabio Date: Sun, 24 Feb 2008 23:16:04 +0000 (+0100) Subject: builtin-for-each-ref.c: fix typo in error message X-Git-Tag: v1.5.5-rc0~152 X-Git-Url: http://git.osdn.net/view?a=commitdiff_plain;h=8e0fbe671f6a63b885702917bf4e7d7a85c59ab4;p=git-core%2Fgit.git builtin-for-each-ref.c: fix typo in error message Signed-off-by: Michele Ballabio Signed-off-by: Junio C Hamano --- diff --git a/builtin-for-each-ref.c b/builtin-for-each-ref.c index f36a43c26..07d9c5721 100644 --- a/builtin-for-each-ref.c +++ b/builtin-for-each-ref.c @@ -165,7 +165,7 @@ static int verify_format(const char *format) for (cp = format; *cp && (sp = find_next(cp)); ) { const char *ep = strchr(sp, ')'); if (!ep) - return error("malformatted format string %s", sp); + return error("malformed format string %s", sp); /* sp points at "%(" and ep points at the closing ")" */ parse_atom(sp + 2, ep); cp = ep + 1;