diff options
Diffstat (limited to 'diffcore.h')
-rw-r--r-- | diffcore.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/diffcore.h b/diffcore.h index 2938271511..5eca32afcc 100644 --- a/diffcore.h +++ b/diffcore.h @@ -26,7 +26,7 @@ struct diff_filespec { * if false, use the name and read from * the filesystem. */ - unsigned file_valid : 1; /* if false the file does not exist */ +#define DIFF_FILE_VALID(spec) (((spec)->mode) != 0) unsigned should_free : 1; /* data should be free()'ed */ unsigned should_munmap : 1; /* data should be munmap()'ed */ }; |