* [PATCH 03/19] convert show-diff.c to use new cache hiding api's
@ 2005-04-21 18:35 Brad Roberts
0 siblings, 0 replies; only message in thread
From: Brad Roberts @ 2005-04-21 18:35 UTC (permalink / raw)
To: git
tree bbc50100a5cfd22264c2b0731ef8678656a399d8
parent 27fc41dcd4aecafdaf583f3962697a2fa3fb6480
author Brad Roberts <braddr@puremagic.com> 1114073516 -0700
committer Brad Roberts <braddr@gameboy2.puremagic.com> 1114073516 -0700
[PATCH] convert show-diff.c to use new cache hiding api's
Signed-off-by: Brad Roberts <braddr@puremagic.com>
---
show-diff.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
Index: show-diff.c
===================================================================
--- 27fc41dcd4aecafdaf583f3962697a2fa3fb6480:1/show-diff.c (mode:100644 sha1:da364e26e28823f951a6be1b686a458575f28ea1)
+++ d70686e08f453199e5451b27fc7d0b36b73a5c7f:1/show-diff.c (mode:100644 sha1:e2642b65805b3e52a16c6309b44a92c2a2bd13c3)
@@ -154,7 +154,7 @@
prepare_diff_cmd();
for (i = 0; i < entries; i++) {
struct stat st;
- struct cache_entry *ce = active_cache[i];
+ struct cache_entry *ce = get_cache_entry(i);
int changed;
unsigned long size;
char type[20];
@@ -172,7 +172,7 @@
printf("%s: Unmerged\n",
ce->name);
while (i < entries &&
- !strcmp(ce->name, active_cache[i]->name))
+ !strcmp(ce->name, get_cache_entry(i)->name))
i++;
i--; /* compensate for loop control increments */
continue;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2005-04-21 18:31 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-04-21 18:35 [PATCH 03/19] convert show-diff.c to use new cache hiding api's Brad Roberts
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox