Andrew's git
/
gitweb.git
/ diff
summary
|
log
|
commit
| diff |
tree
commit
grep
author
committer
pickaxe
?
re
adjust to the rebased series by Linus.
author
Junio C Hamano
<junkio@cox.net>
Tue, 30 May 2006 05:00:21 +0000
(22:00 -0700)
committer
Junio C Hamano
<junkio@cox.net>
Tue, 30 May 2006 05:00:21 +0000
(22:00 -0700)
Signed-off-by: Junio C Hamano <junkio@cox.net>
builtin-read-tree.c
patch
|
blob
|
history
raw
|
patch
|
inline
| side by side (parent:
0a2586c
)
diff --git
a/builtin-read-tree.c
b/builtin-read-tree.c
index b93178a4ba02d234e907d10d39e9d56051171dbc..480e6ed3723cfc00325245416b4b1d9089788144 100644
(file)
--- a/
builtin-read-tree.c
+++ b/
builtin-read-tree.c
@@
-9,8
+9,8
@@
#include "object.h"
#include "tree.h"
#include "object.h"
#include "tree.h"
-#include "cache-tree.h"
#include "tree-walk.h"
#include "tree-walk.h"
+#include "cache-tree.h"
#include <sys/time.h>
#include <signal.h>
#include "builtin.h"
#include <sys/time.h>
#include <signal.h>
#include "builtin.h"
@@
-777,12
+777,12
@@
static int read_cache_unmerged(void)
static void prime_cache_tree_rec(struct cache_tree *it, struct tree *tree)
{
struct tree_desc desc;
static void prime_cache_tree_rec(struct cache_tree *it, struct tree *tree)
{
struct tree_desc desc;
- int cnt
= 0
;
+ int cnt;
memcpy(it->sha1, tree->object.sha1, 20);
desc.buf = tree->buffer;
desc.size = tree->size;
memcpy(it->sha1, tree->object.sha1, 20);
desc.buf = tree->buffer;
desc.size = tree->size;
-
+ cnt = 0;
while (desc.size) {
unsigned mode;
const char *name;
while (desc.size) {
unsigned mode;
const char *name;
@@
-790,14
+790,11
@@
static void prime_cache_tree_rec(struct cache_tree *it, struct tree *tree)
sha1 = tree_entry_extract(&desc, &name, &mode);
update_tree_entry(&desc);
sha1 = tree_entry_extract(&desc, &name, &mode);
update_tree_entry(&desc);
-
if (!S_ISDIR(mode))
cnt++;
else {
struct cache_tree_sub *sub;
if (!S_ISDIR(mode))
cnt++;
else {
struct cache_tree_sub *sub;
- struct tree *subtree;
-
- subtree = lookup_tree(sha1);
+ struct tree *subtree = lookup_tree(sha1);
if (!subtree->object.parsed)
parse_tree(subtree);
sub = cache_tree_sub(it, name);
if (!subtree->object.parsed)
parse_tree(subtree);
sub = cache_tree_sub(it, name);