Skip to content

Commit a7caae2

Browse files
committed
Sync with 'maint'
2 parents 508386c + 37537d6 commit a7caae2

File tree

2 files changed

+13
-1
lines changed

2 files changed

+13
-1
lines changed

Documentation/fsck-msgids.txt

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,18 @@
4646
`fullPathname`::
4747
(WARN) A path contains the full path starting with "/".
4848

49+
`gitattributesBlob`::
50+
(ERROR) A non-blob found at `.gitattributes`.
51+
52+
`gitattributesLarge`::
53+
(ERROR) The `.gitattributes` blob is too large.
54+
55+
`gitattributesLineLength`::
56+
(ERROR) The `.gitattributes` blob contains too long lines.
57+
58+
`gitattributesMissing`::
59+
(ERROR) Unable to read `.gitattributes` blob.
60+
4961
`gitattributesSymlink`::
5062
(INFO) `.gitattributes` is a symlink.
5163

attr.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -752,7 +752,7 @@ static struct attr_stack *read_attr_from_index(struct index_state *istate,
752752
struct attr_stack *res;
753753
char *buf, *sp;
754754
int lineno = 0;
755-
size_t size;
755+
unsigned long size;
756756

757757
if (!istate)
758758
return NULL;

0 commit comments

Comments
 (0)