diff options
author | Brandon Williams <bmwill@google.com> | 2017-05-30 10:30:50 -0700 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2017-06-02 09:36:07 +0900 |
commit | f9704c2d823f437aeed50e591415f24aebdda71d (patch) | |
tree | 94054d09457dcfb830b08bd16dc9246af9b369ff /diff-no-index.c | |
parent | 94a0097a41f09e00322add6d1cf62b3610b6a85c (diff) | |
download | git-f9704c2d823f437aeed50e591415f24aebdda71d.tar.gz |
diff: convert fill_filespec to struct object_id
Signed-off-by: Brandon Williams <bmwill@google.com>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'diff-no-index.c')
-rw-r--r-- | diff-no-index.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diff-no-index.c b/diff-no-index.c index 79229382b0..80ff17d460 100644 --- a/diff-no-index.c +++ b/diff-no-index.c @@ -82,7 +82,7 @@ static struct diff_filespec *noindex_filespec(const char *name, int mode) if (!name) name = "/dev/null"; s = alloc_filespec(name); - fill_filespec(s, null_sha1, 0, mode); + fill_filespec(s, &null_oid, 0, mode); if (name == file_from_standard_input) populate_from_stdin(s); return s; |