X-Git-Url: https://asedeno.scripts.mit.edu/gitweb/?a=blobdiff_plain;f=builtin-for-each-ref.c;h=07d9c572125523e2eb8f82e4cab907ee7dc94348;hb=832d586a0cb30e6568810709c183ad516a8548a3;hp=f36a43c26459bd386618e551e2e93743cd8030aa;hpb=7be2b6e02b4f2a1b4812764f65b12cafb11a934e;p=git.git 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;