Skip to content

Commit 8e0fbe6

Browse files
chungagitster
authored andcommitted
builtin-for-each-ref.c: fix typo in error message
Signed-off-by: Michele Ballabio <barra_cuda@katamail.com> Signed-off-by: Junio C Hamano <gitster@pobox.com>
1 parent 8a8bf46 commit 8e0fbe6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builtin-for-each-ref.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ static int verify_format(const char *format)
165165
for (cp = format; *cp && (sp = find_next(cp)); ) {
166166
const char *ep = strchr(sp, ')');
167167
if (!ep)
168-
return error("malformatted format string %s", sp);
168+
return error("malformed format string %s", sp);
169169
/* sp points at "%(" and ep points at the closing ")" */
170170
parse_atom(sp + 2, ep);
171171
cp = ep + 1;

0 commit comments

Comments
 (0)