summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: b8bba41)
raw | patch | inline | side by side (parent: b8bba41)
author | Shawn O. Pearce <spearce@spearce.org> | |
Tue, 2 Feb 2010 15:33:28 +0000 (07:33 -0800) | ||
committer | Junio C Hamano <gitster@pobox.com> | |
Tue, 2 Feb 2010 17:54:34 +0000 (09:54 -0800) |
The new dircache extension CACHE_EXT_RESOLVE_UNDO, whose value is
0x52455543, is actually the ASCII sequence 'REUC', not the ASCII
sequence 'REUN'.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
0x52455543, is actually the ASCII sequence 'REUC', not the ASCII
sequence 'REUN'.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
read-cache.c | patch | blob | history |
diff --git a/read-cache.c b/read-cache.c
index 309b77a6c9bae41ba2cde42e0266b02ae4b32497..f1f789b7b87643245f1772d15b3f1cb321af324c 100644 (file)
--- a/read-cache.c
+++ b/read-cache.c
#define CACHE_EXT(s) ( (s[0]<<24)|(s[1]<<16)|(s[2]<<8)|(s[3]) )
#define CACHE_EXT_TREE 0x54524545 /* "TREE" */
-#define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUN" */
+#define CACHE_EXT_RESOLVE_UNDO 0x52455543 /* "REUC" */
struct index_state the_index;