diff options
author | Junio C Hamano <gitster@pobox.com> | 2011-05-30 20:19:21 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2011-05-30 20:19:21 -0700 |
commit | d98a20114d641789e1c886f6c26e63d91132f5da (patch) | |
tree | ecedf83d9a56ff47e1a44030faa705aa90078ed4 /pretty.c | |
parent | 1f9a980636d39c08c1cf1c13a6e6584d9d039e0e (diff) | |
parent | a6253d107734c7ffa6d939307d87cf496795dc78 (diff) | |
download | git-d98a20114d641789e1c886f6c26e63d91132f5da.tar.gz |
Merge branch 'jc/fmt-req-fix'
* jc/fmt-req-fix:
userformat_find_requirements(): find requirement for the correct format
Diffstat (limited to 'pretty.c')
-rw-r--r-- | pretty.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1084,7 +1084,7 @@ void userformat_find_requirements(const char *fmt, struct userformat_want *w) return; fmt = user_format; } - strbuf_expand(&dummy, user_format, userformat_want_item, w); + strbuf_expand(&dummy, fmt, userformat_want_item, w); strbuf_release(&dummy); } |