/
uis
/
git
/
x
/
uis
/
git
/
git.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
| inline |
side by side
Make on-disk index representation separate from in-core one
[git/git.git]
/
builtin-blame.c
diff --git
a/builtin-blame.c
b/builtin-blame.c
index
9b4c02e
..
c7e6887
100644
(file)
--- a/
builtin-blame.c
+++ b/
builtin-blame.c
@@
-2092,7
+2092,7
@@
static struct commit *fake_working_tree_commit(const char *path, const char *con
if (!mode) {
int pos = cache_name_pos(path, len);
if (0 <= pos)
- mode =
ntohl(active_cache[pos]->ce_mode)
;
+ mode =
active_cache[pos]->ce_mode
;
else
/* Let's not bother reading from HEAD tree */
mode = S_IFREG | 0644;