diff options
author | Nguyễn Thái Ngọc Duy <pclouds@gmail.com> | 2018-09-21 17:57:22 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2018-09-21 18:48:10 +0200 |
commit | 6afaf807859bd671a3f8e9101952e648a1a5e1a9 (patch) | |
tree | a952ca9617248345985fb272781b612a9690f7ba /grep.c | |
parent | blame.c: rename "repo" argument to "r" (diff) | |
download | git-6afaf807859bd671a3f8e9101952e648a1a5e1a9.tar.xz git-6afaf807859bd671a3f8e9101952e648a1a5e1a9.zip |
diff.c: remove the_index dependency in textconv() functions
Signed-off-by: Nguyễn Thái Ngọc Duy <pclouds@gmail.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'grep.c')
-rw-r--r-- | grep.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1741,7 +1741,7 @@ static int fill_textconv_grep(struct userdiff_driver *driver, * structure. */ grep_read_lock(); - size = fill_textconv(driver, df, &buf); + size = fill_textconv(the_repository, driver, df, &buf); grep_read_unlock(); free_filespec(df); |